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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _IPT_STATE_H
  2. #define _IPT_STATE_H
  3. #define IPT_STATE_BIT(ctinfo) (1 << ((ctinfo)%IP_CT_IS_REPLY+1))
  4. #define IPT_STATE_INVALID (1 << 0)
  5. #define IPT_STATE_UNTRACKED (1 << (IP_CT_NUMBER + 1))
  6. struct ipt_state_info
  7. {
  8. unsigned int statemask;
  9. };
  10. #endif /*_IPT_STATE_H*/