GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / linux / netfilter_ipv6 / ip6t_mh.h
blob18549bca2d1f5609785ee33a42972ad288af66e9
1 #ifndef _IP6T_MH_H
2 #define _IP6T_MH_H
4 /* MH matching stuff */
5 struct ip6t_mh {
6 u_int8_t types[2]; /* MH type range */
7 u_int8_t invflags; /* Inverse flags */
8 };
10 /* Values for "invflags" field in struct ip6t_mh. */
11 #define IP6T_MH_INV_TYPE 0x01 /* Invert the sense of type. */
12 #define IP6T_MH_INV_MASK 0x01 /* All possible flags. */
14 #endif /*_IP6T_MH_H*/