atmarp.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* atmarp.h - ATM ARP protocol and kernel-demon interface definitions */
  2.  
  3. /* Written 1995-1999 by Werner Almesberger, EPFL LRC/ICA */
  4.  
  5. #ifndef _LINUX_ATMARP_H
  6. #define _LINUX_ATMARP_H
  7. #ifdef __KERNEL__
  8. #include <linux/types.h>
  9. #endif
  10. #include <linux/atmapi.h>
  11. #include <linux/atmioc.h>
  12. #define ATMARP_RETRY_DELAY 30 /* request next resolution or forget
  13.    NAK after 30 sec - should go into
  14.    atmclip.h */
  15. #define ATMARP_MAX_UNRES_PACKETS 5 /* queue that many packets while
  16.    waiting for the resolver */
  17. #define ATMARPD_CTRL _IO('a',ATMIOC_CLIP+1) /* become atmarpd ctrl sock */
  18. #define ATMARP_MKIP _IO('a',ATMIOC_CLIP+2) /* attach socket to IP */
  19. #define ATMARP_SETENTRY _IO('a',ATMIOC_CLIP+3) /* fill or hide ARP entry */
  20. #define ATMARP_ENCAP _IO('a',ATMIOC_CLIP+5) /* change encapsulation */
  21. enum atmarp_ctrl_type {
  22. act_invalid, /* catch uninitialized structures */
  23. act_need, /* need address resolution */
  24. act_up, /* interface is coming up */
  25. act_down, /* interface is going down */
  26. act_change /* interface configuration has changed */
  27. };
  28. struct atmarp_ctrl {
  29. enum atmarp_ctrl_type type; /* message type */
  30. int itf_num;/* interface number (if present) */
  31. uint32_t ip; /* IP address (act_need only) */
  32. };
  33. #endif