mirror of
https://github.com/ipxe/ipxe
synced 2025-12-21 20:40:25 +03:00
First version
This commit is contained in:
20
src/include/gpxe/arp.h
Normal file
20
src/include/gpxe/arp.h
Normal 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 */
|
||||
Reference in New Issue
Block a user