mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-16 00:01:34 +00:00
24 lines
443 B
C
24 lines
443 B
C
#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 );
|
|
|
|
extern int arp_add_generic_header ( struct net_interface *arp_netif,
|
|
struct pk_buff *pkb );
|
|
|
|
#endif /* _ARP_H */
|