david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/gpxe/arp.h

24 lines
450 B
C
Raw Normal View History

2006-04-19 03:42:03 +02:00
#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,
const void **ll_addr );
2006-04-19 03:42:03 +02:00
extern int arp_process ( struct net_interface *arp_netif,
struct pk_buff *pkb );
2006-04-19 03:42:33 +02:00
extern int arp_add_generic_header ( struct net_interface *arp_netif,
2006-04-19 04:08:27 +02:00
struct pk_buff *pkb );
2006-04-19 03:42:33 +02:00
2006-04-19 03:42:03 +02:00
#endif /* _ARP_H */