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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _IPT_CONNBYTES_H
  2. #define _IPT_CONNBYTES_H
  3. enum ipt_connbytes_what {
  4. IPT_CONNBYTES_PKTS,
  5. IPT_CONNBYTES_BYTES,
  6. IPT_CONNBYTES_AVGPKT,
  7. };
  8. enum ipt_connbytes_direction {
  9. IPT_CONNBYTES_DIR_ORIGINAL,
  10. IPT_CONNBYTES_DIR_REPLY,
  11. IPT_CONNBYTES_DIR_BOTH,
  12. };
  13. struct ipt_connbytes_info
  14. {
  15. struct {
  16. aligned_u64 from; /* count to be matched */
  17. aligned_u64 to; /* count to be matched */
  18. } count;
  19. u_int8_t what; /* ipt_connbytes_what */
  20. u_int8_t direction; /* ipt_connbytes_direction */
  21. };
  22. #endif