X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/47c41031c5ec29bb8d8047cd287aa8b0b7af1fd3..6d6494e427a90913216c94306593a65cb5361c0d:/net/etherboot-compat.h diff --git a/net/etherboot-compat.h b/net/etherboot-compat.h index e769ce8..b3ccc51 100644 --- a/net/etherboot-compat.h +++ b/net/etherboot-compat.h @@ -2,6 +2,7 @@ #define _ETHERBOOT_COMPAT_H #include +#include "lwip/pbuf.h" #define ETH_ALEN 6 @@ -18,8 +19,8 @@ struct nic { unsigned char hwaddr[6]; - int (*poll) (struct nic *nic, int retrieve); - void (*transmit) (unsigned int size, const char *pkt); + int (*recv) (struct nic *nic); + void (*transmit) (struct nic *nic, struct pbuf *p); }; #define virt_to_bus(x) memory_v2p((void *)(x))