arp.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* linux/net/inet/arp.h */
  2. #ifndef _ARP_H
  3. #define _ARP_H
  4. #include <linux/if_arp.h>
  5. #include <net/neighbour.h>
  6. extern struct neigh_table arp_tbl;
  7. extern void arp_init(void);
  8. extern int arp_rcv(struct sk_buff *skb, struct net_device *dev,
  9. struct packet_type *pt);
  10. extern int arp_find(unsigned char *haddr, struct sk_buff *skb);
  11. extern int arp_ioctl(unsigned int cmd, void *arg);
  12. extern void     arp_send(int type, int ptype, u32 dest_ip, 
  13.  struct net_device *dev, u32 src_ip, 
  14.  unsigned char *dest_hw, unsigned char *src_hw, unsigned char *th);
  15. extern int arp_bind_neighbour(struct dst_entry *dst);
  16. extern int arp_mc_map(u32 addr, u8 *haddr, struct net_device *dev, int dir);
  17. extern void arp_ifdown(struct net_device *dev);
  18. extern struct neigh_ops arp_broken_ops;
  19. #endif /* _ARP_H */