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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _IPT_DCCP_H_
  2. #define _IPT_DCCP_H_
  3. #define IPT_DCCP_SRC_PORTS         0x01
  4. #define IPT_DCCP_DEST_PORTS         0x02
  5. #define IPT_DCCP_TYPE 0x04
  6. #define IPT_DCCP_OPTION 0x08
  7. #define IPT_DCCP_VALID_FLAGS 0x0f
  8. struct ipt_dccp_info {
  9. u_int16_t dpts[2];  /* Min, Max */
  10. u_int16_t spts[2];  /* Min, Max */
  11. u_int16_t flags;
  12. u_int16_t invflags;
  13. u_int16_t typemask;
  14. u_int8_t option;
  15. };
  16. #endif /* _IPT_DCCP_H_ */