X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/68beefa85564e151acd18e12733897a5201fe67e..421ccff4aaad4ddaba92ae0dba69fe6dbc9c1105:/net/etherboot-compat.h diff --git a/net/etherboot-compat.h b/net/etherboot-compat.h index b72885b..2f0626f 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 @@ -15,9 +16,11 @@ struct nic { unsigned int ioaddr; unsigned int irqno; + + unsigned char hwaddr[6]; - int (*poll) (struct nic *nic, int retrieve); - void (*transmit) (const char *dest_addr, unsigned int proto, unsigned int size, const char *pkt); + int (*recv) (struct nic *nic); + void (*transmit) (struct pbuf *p); }; #define virt_to_bus(x) memory_v2p((void *)(x))