david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

First version

This commit is contained in:
Michael Brown 2006-04-19 01:42:03 +00:00
parent 0b561ce972
commit 02d342f38f
1 changed files with 20 additions and 0 deletions

20
src/include/gpxe/arp.h Normal file
View File

@ -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 */