14 lines
212 B
C
14 lines
212 B
C
#ifndef __ETHERNETIF_H__
|
|
#define __ETHERNETIF_H__
|
|
|
|
|
|
#include "lwip/err.h"
|
|
#include "lwip/netif.h"
|
|
|
|
|
|
void ethernetif_recv(struct netif *netif, int total_len);
|
|
err_t ethernetif_init(struct netif *netif);
|
|
|
|
|
|
#endif
|