arp.h 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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_find(unsigned char *haddr, struct sk_buff *skb);
  9. extern int arp_ioctl(struct net *net, unsigned int cmd, void __user *arg);
  10. extern void arp_send(int type, int ptype, __be32 dest_ip,
  11. struct net_device *dev, __be32 src_ip,
  12. const unsigned char *dest_hw,
  13. const unsigned char *src_hw, const unsigned char *th);
  14. extern int arp_bind_neighbour(struct dst_entry *dst);
  15. extern struct neighbour *__arp_bind_neighbour(struct dst_entry *dst, __be32 nexthop);
  16. extern int arp_mc_map(__be32 addr, u8 *haddr, struct net_device *dev, int dir);
  17. extern void arp_ifdown(struct net_device *dev);
  18. extern struct sk_buff *arp_create(int type, int ptype, __be32 dest_ip,
  19. struct net_device *dev, __be32 src_ip,
  20. const unsigned char *dest_hw,
  21. const unsigned char *src_hw,
  22. const unsigned char *target_hw);
  23. extern void arp_xmit(struct sk_buff *skb);
  24. int arp_invalidate(struct net_device *dev, __be32 ip);
  25. #endif /* _ARP_H */