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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_ERRQUEUE_H
  2. #define _LINUX_ERRQUEUE_H 1
  3. struct sock_extended_err
  4. {
  5. __u32 ee_errno;
  6. __u8 ee_origin;
  7. __u8 ee_type;
  8. __u8 ee_code;
  9. __u8 ee_pad;
  10. __u32   ee_info;
  11. __u32   ee_data;
  12. };
  13. #define SO_EE_ORIGIN_NONE 0
  14. #define SO_EE_ORIGIN_LOCAL 1
  15. #define SO_EE_ORIGIN_ICMP 2
  16. #define SO_EE_ORIGIN_ICMP6 3
  17. #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
  18. #ifdef __KERNEL__
  19. #include <linux/config.h>
  20. #include <net/ip.h>
  21. #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
  22. #include <linux/ipv6.h>
  23. #endif
  24. #define SKB_EXT_ERR(skb) ((struct sock_exterr_skb *) ((skb)->cb))
  25. struct sock_exterr_skb
  26. {
  27. union {
  28. struct inet_skb_parm h4;
  29. #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
  30. struct inet6_skb_parm h6;
  31. #endif
  32. } header;
  33. struct sock_extended_err ee;
  34. u16 addr_offset;
  35. u16 port;
  36. };
  37. #endif
  38. #endif