Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net...
[deliverable/linux.git] / include / uapi / linux / netfilter / xt_TCPOPTSTRIP.h
CommitLineData
338e8a79
SS
1#ifndef _XT_TCPOPTSTRIP_H
2#define _XT_TCPOPTSTRIP_H
3
06988b06
JE
4#include <linux/types.h>
5
338e8a79
SS
6#define tcpoptstrip_set_bit(bmap, idx) \
7 (bmap[(idx) >> 5] |= 1U << (idx & 31))
8#define tcpoptstrip_test_bit(bmap, idx) \
9 (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
10
11struct xt_tcpoptstrip_target_info {
f1c72229 12 __u32 strip_bmap[8];
338e8a79
SS
13};
14
15#endif /* _XT_TCPOPTSTRIP_H */
This page took 1.035044 seconds and 5 git commands to generate.