• 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_ipv4/
1#ifndef __IPT_CONDITION_MATCH__
2#define __IPT_CONDITION_MATCH__
3
4#define CONDITION_NAME_LEN  32
5
6struct condition_info {
7	char name[CONDITION_NAME_LEN];
8	int  invert;
9};
10
11#endif
12