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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* TTL modification module for IP tables
  2.  * (C) 2000 by Harald Welte <laforge@netfilter.org> */
  3. #ifndef _IPT_TTL_H
  4. #define _IPT_TTL_H
  5. enum {
  6. IPT_TTL_SET = 0,
  7. IPT_TTL_INC,
  8. IPT_TTL_DEC
  9. };
  10. #define IPT_TTL_MAXMODE IPT_TTL_DEC
  11. struct ipt_TTL_info {
  12. u_int8_t mode;
  13. u_int8_t ttl;
  14. };
  15. #endif