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

19 lines
296 B
C
Raw Normal View History

#ifndef _GPXE_ARP_H
#define _GPXE_ARP_H
2006-04-19 03:42:03 +02:00
/** @file
*
* Address Resolution Protocol
*
*/
struct net_device;
struct net_header;
struct ll_header;
2006-04-19 03:42:03 +02:00
extern int arp_resolve ( struct net_device *netdev,
const struct net_header *nethdr,
struct ll_header *llhdr );
2006-04-19 03:42:03 +02:00
#endif /* _GPXE_ARP_H */