]> Joshua Wise's Git repositories - netwatch.git/blobdiff - net/etherboot-compat.h
Add a todo list entry.
[netwatch.git] / net / etherboot-compat.h
index b72885bce707f78eb0f3d2b48ceef2dad492ce13..d56dce5c9ae821b4599f1af873e3e895fcb5f96e 100644 (file)
@@ -1,7 +1,19 @@
+/* etherboot-compat.h
+ * EtherBoot driver compatibility routines
+ * NetWatch system management mode administration console
+ *
+ * Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
+ *
+ */
+
+
 #ifndef _ETHERBOOT_COMPAT_H
 #define _ETHERBOOT_COMPAT_H
 
 #include <paging.h>
+#include "lwip/pbuf.h"
 
 #define ETH_ALEN       6
 
@@ -15,9 +27,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 nic *nic, struct pbuf *p);
 };
 
 #define virt_to_bus(x) memory_v2p((void *)(x))
This page took 0.021671 seconds and 4 git commands to generate.