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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _IPT_IPRANGE_H
  2. #define _IPT_IPRANGE_H
  3. #define IPRANGE_SRC 0x01 /* Match source IP address */
  4. #define IPRANGE_DST 0x02 /* Match destination IP address */
  5. #define IPRANGE_SRC_INV 0x10 /* Negate the condition */
  6. #define IPRANGE_DST_INV 0x20 /* Negate the condition */
  7. struct ipt_iprange {
  8. /* Inclusive: network order. */
  9. u_int32_t min_ip, max_ip;
  10. };
  11. struct ipt_iprange_info
  12. {
  13. struct ipt_iprange src;
  14. struct ipt_iprange dst;
  15. /* Flags from above */
  16. u_int8_t flags;
  17. };
  18. #endif /* _IPT_IPRANGE_H */