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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __LINUX_BRIDGE_EBT_LOG_H
  2. #define __LINUX_BRIDGE_EBT_LOG_H
  3. #define EBT_LOG_IP 0x01 /* if the frame is made by ip, log the ip information */
  4. #define EBT_LOG_ARP 0x02
  5. #define EBT_LOG_MASK (EBT_LOG_IP | EBT_LOG_ARP)
  6. #define EBT_LOG_PREFIX_SIZE 30
  7. #define EBT_LOG_WATCHER "log"
  8. struct ebt_log_info
  9. {
  10. uint8_t loglevel;
  11. uint8_t prefix[EBT_LOG_PREFIX_SIZE];
  12. uint32_t bitmask;
  13. };
  14. #endif