]>
Commit | Line | Data |
---|---|---|
54d4b877 JW |
1 | #ifndef _NET_H |
2 | #define _NET_H | |
3b3161a1 | 3 | |
3e6d6106 | 4 | #include "etherboot-compat.h" |
bec09bd1 | 5 | #include <lwip/pbuf.h> |
3e6d6106 | 6 | |
3b3161a1 | 7 | extern void eth_init(); |
bec09bd1 | 8 | extern void eth_recv(struct nic *nic, struct pbuf *p); |
3b3161a1 | 9 | extern void eth_poll(); |
7a914840 | 10 | extern int eth_register(struct nic *nic); |
42125f27 | 11 | |
3b3161a1 | 12 | #endif |