xt_dccp.h revision e37d45ce390c2f5a7f1e64742b9100ecef0def54
1#ifndef _XT_DCCP_H_
2#define _XT_DCCP_H_
3
4#include <linux/types.h>
5
6#define XT_DCCP_SRC_PORTS	        0x01
7#define XT_DCCP_DEST_PORTS	        0x02
8#define XT_DCCP_TYPE			0x04
9#define XT_DCCP_OPTION			0x08
10
11#define XT_DCCP_VALID_FLAGS		0x0f
12
13struct xt_dccp_info {
14	__u16 dpts[2];  /* Min, Max */
15	__u16 spts[2];  /* Min, Max */
16
17	__u16 flags;
18	__u16 invflags;
19
20	__u16 typemask;
21	__u8 option;
22};
23
24#endif /* _XT_DCCP_H_ */
25
26