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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _IP6T_FRAG_H
  2. #define _IP6T_FRAG_H
  3. struct ip6t_frag
  4. {
  5. u_int32_t ids[2]; /* Security Parameter Index */
  6. u_int32_t hdrlen; /* Header Length */
  7. u_int8_t  flags; /*  */
  8. u_int8_t  invflags; /* Inverse flags */
  9. };
  10. #define IP6T_FRAG_IDS  0x01
  11. #define IP6T_FRAG_LEN  0x02
  12. #define IP6T_FRAG_RES  0x04
  13. #define IP6T_FRAG_FST  0x08
  14. #define IP6T_FRAG_MF   0x10
  15. #define IP6T_FRAG_NMF   0x20
  16. /* Values for "invflags" field in struct ip6t_frag. */
  17. #define IP6T_FRAG_INV_IDS 0x01 /* Invert the sense of ids. */
  18. #define IP6T_FRAG_INV_LEN 0x02 /* Invert the sense of length. */
  19. #define IP6T_FRAG_INV_MASK 0x03 /* All possible flags. */
  20. #define MASK_HOPOPTS    128
  21. #define MASK_DSTOPTS    64
  22. #define MASK_ROUTING    32
  23. #define MASK_FRAGMENT   16
  24. #define MASK_AH         8
  25. #define MASK_ESP        4
  26. #define MASK_NONE       2
  27. #define MASK_PROTO      1
  28. #endif /*_IP6T_FRAG_H*/