root/net/inet/arp.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 /* linux/net/inet/arp.h */
   2 #ifndef _ARP_H
   3 #define _ARP_H
   4 
   5 extern void     arp_init(void);
   6 extern void     arp_destroy(unsigned long paddr, int force);
   7 extern int      arp_rcv(struct sk_buff *skb, struct device *dev,
   8                         struct packet_type *pt);
   9 extern int      arp_find(unsigned char *haddr, unsigned long paddr,
  10                 struct device *dev, unsigned long saddr, struct sk_buff *skb);
  11 extern int      arp_get_info(char *buffer, char **start, off_t origin, int length);
  12 extern int      arp_ioctl(unsigned int cmd, void *arg);
  13 
  14 #endif  /* _ARP_H */

/* [previous][next][first][last][top][bottom][index][help] */