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