blob: 7157318499c27b3c96b0e07ae19413fcbe94a827 [file] [log] [blame]
Sven Schnelle338e8a72007-12-04 23:21:50 -08001#ifndef _XT_TCPOPTSTRIP_H
2#define _XT_TCPOPTSTRIP_H
3
Jan Engelhardt06988b02011-01-20 17:50:17 +01004#include <linux/types.h>
5
Sven Schnelle338e8a72007-12-04 23:21:50 -08006#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 {
Jan Engelhardtf1c72222010-12-15 22:58:53 +010012 __u32 strip_bmap[8];
Sven Schnelle338e8a72007-12-04 23:21:50 -080013};
14
15#endif /* _XT_TCPOPTSTRIP_H */