perf_counter: Fix race in attaching counters to tasks and exiting
[linux-2.6/verdex.git] / include / linux / netfilter_ipv6 / ip6t_mh.h
blobb9ca9a5f74d009ae112037789d044161ed17b2d7
1 #ifndef _IP6T_MH_H
2 #define _IP6T_MH_H
4 /* MH matching stuff */
5 struct ip6t_mh
7 u_int8_t types[2]; /* MH type range */
8 u_int8_t invflags; /* Inverse flags */
9 };
11 /* Values for "invflags" field in struct ip6t_mh. */
12 #define IP6T_MH_INV_TYPE 0x01 /* Invert the sense of type. */
13 #define IP6T_MH_INV_MASK 0x01 /* All possible flags. */
15 #endif /*_IP6T_MH_H*/