2024-01-07 23:32:30 +08:00
|
|
|
#ifndef __ETHERNETIF_H__
|
|
|
|
|
#define __ETHERNETIF_H__
|
|
|
|
|
|
|
|
|
|
#include "lwip/err.h"
|
|
|
|
|
#include "lwip/netif.h"
|
2024-01-22 23:17:08 +08:00
|
|
|
#include <u_types.h>
|
2024-01-07 23:32:30 +08:00
|
|
|
err_t ethernetif_init(struct netif *netif);
|
2024-01-22 23:17:08 +08:00
|
|
|
err_t ethernetif_input_raw(struct netif *netif, uint8_t *data, int len);
|
2024-01-07 23:32:30 +08:00
|
|
|
|
2024-01-20 21:20:45 +08:00
|
|
|
#endif
|