]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
First version
authorMichael Brown <mcb30@etherboot.org>
Wed, 19 Apr 2006 01:42:03 +0000 (01:42 +0000)
committerMichael Brown <mcb30@etherboot.org>
Wed, 19 Apr 2006 01:42:03 +0000 (01:42 +0000)
src/include/gpxe/arp.h [new file with mode: 0644]

diff --git a/src/include/gpxe/arp.h b/src/include/gpxe/arp.h
new file mode 100644 (file)
index 0000000..596bae6
--- /dev/null
@@ -0,0 +1,20 @@
+#ifndef _ARP_H
+#define _ARP_H
+
+/** @file
+ *
+ * Address Resolution Protocol
+ *
+ */
+
+struct net_device;
+struct net_interface;
+struct pk_buff;
+
+extern int arp_resolve ( struct net_device *netdev, struct pk_buff *pkb,
+                        void *ll_addr );
+
+extern int arp_process ( struct net_interface *arp_netif,
+                        struct pk_buff *pkb );
+
+#endif /* _ARP_H */