Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / linux / netfilter / xt_dccp.h
blobe0221b9d32cbd204ad5ae1611cd84f4d6d0700bf
1 #ifndef _XT_DCCP_H_
2 #define _XT_DCCP_H_
4 #define XT_DCCP_SRC_PORTS 0x01
5 #define XT_DCCP_DEST_PORTS 0x02
6 #define XT_DCCP_TYPE 0x04
7 #define XT_DCCP_OPTION 0x08
9 #define XT_DCCP_VALID_FLAGS 0x0f
11 struct xt_dccp_info {
12 u_int16_t dpts[2]; /* Min, Max */
13 u_int16_t spts[2]; /* Min, Max */
15 u_int16_t flags;
16 u_int16_t invflags;
18 u_int16_t typemask;
19 u_int8_t option;
22 #endif /* _XT_DCCP_H_ */