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 / xt_TCPOPTSTRIP.h
blob2db543214ff59b57b644c5abc1163086ef8ca732
1 #ifndef _XT_TCPOPTSTRIP_H
2 #define _XT_TCPOPTSTRIP_H
4 #define tcpoptstrip_set_bit(bmap, idx) \
5 (bmap[(idx) >> 5] |= 1U << (idx & 31))
6 #define tcpoptstrip_test_bit(bmap, idx) \
7 (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
9 struct xt_tcpoptstrip_target_info {
10 u_int32_t strip_bmap[8];
13 #endif /* _XT_TCPOPTSTRIP_H */