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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _IPT_STRING_H
  2. #define _IPT_STRING_H
  3. #define IPT_STRING_MAX_PATTERN_SIZE 128
  4. #define IPT_STRING_MAX_ALGO_NAME_SIZE 16
  5. struct ipt_string_info
  6. {
  7. u_int16_t from_offset;
  8. u_int16_t to_offset;
  9. char   algo[IPT_STRING_MAX_ALGO_NAME_SIZE];
  10. char    pattern[IPT_STRING_MAX_PATTERN_SIZE];
  11. u_int8_t  patlen;
  12. u_int8_t  invert;
  13. struct ts_config __attribute__((aligned(8))) *config;
  14. };
  15. #endif /*_IPT_STRING_H*/