Browse Source

First version

tags/v0.9.3
Michael Brown 19 years ago
parent
commit
02d342f38f
1 changed files with 20 additions and 0 deletions
  1. 20
    0
      src/include/gpxe/arp.h

+ 20
- 0
src/include/gpxe/arp.h View File

@@ -0,0 +1,20 @@
1
+#ifndef _ARP_H
2
+#define _ARP_H
3
+
4
+/** @file
5
+ *
6
+ * Address Resolution Protocol
7
+ *
8
+ */
9
+
10
+struct net_device;
11
+struct net_interface;
12
+struct pk_buff;
13
+
14
+extern int arp_resolve ( struct net_device *netdev, struct pk_buff *pkb,
15
+			 void *ll_addr );
16
+
17
+extern int arp_process ( struct net_interface *arp_netif,
18
+			 struct pk_buff *pkb );
19
+
20
+#endif /* _ARP_H */

Loading…
Cancel
Save