• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/linux/netfilter_bridge/
1#ifndef __LINUX_BRIDGE_EBT_NFLOG_H
2#define __LINUX_BRIDGE_EBT_NFLOG_H
3
4#define EBT_NFLOG_MASK 0x0
5
6#define EBT_NFLOG_PREFIX_SIZE 64
7#define EBT_NFLOG_WATCHER "nflog"
8
9#define EBT_NFLOG_DEFAULT_GROUP		0x1
10#define EBT_NFLOG_DEFAULT_THRESHOLD	1
11
12struct ebt_nflog_info {
13	u_int32_t len;
14	u_int16_t group;
15	u_int16_t threshold;
16	u_int16_t flags;
17	u_int16_t pad;
18	char prefix[EBT_NFLOG_PREFIX_SIZE];
19};
20
21#endif				/* __LINUX_BRIDGE_EBT_NFLOG_H */
22