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