Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
xt_TCPOPTSTRIP.h
Go to the documentation of this file.
1 #ifndef _XT_TCPOPTSTRIP_H
2 #define _XT_TCPOPTSTRIP_H
3 
4 #include <linux/types.h>
5 
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 
13 };
14 
15 #endif /* _XT_TCPOPTSTRIP_H */