mirror of
https://github.com/ep00ch/lwip-contrib-mac.git
synced 2024-11-06 04:05:03 +00:00
11 lines
206 B
C
11 lines
206 B
C
#ifndef __PKTIF_H__
|
|
#define __PKTIF_H__
|
|
|
|
#include "lwip/err.h"
|
|
|
|
err_t ethernetif_init(struct netif *netif);
|
|
void ethernetif_shutdown(struct netif *netif);
|
|
void ethernetif_poll(struct netif *netif);
|
|
|
|
#endif
|