1/****************************************************************************
2 ****************************************************************************
3 ***
4 ***   This header was automatically generated from a Linux kernel header
5 ***   of the same name, to make information necessary for userspace to
6 ***   call into the kernel available to libc.  It contains only constants,
7 ***   structures, and macros generated from the original header, and thus,
8 ***   contains no copyrightable information.
9 ***
10 ****************************************************************************
11 ****************************************************************************/
12#ifndef _XT_DCCP_H_
13#define _XT_DCCP_H_
14
15#define XT_DCCP_SRC_PORTS 0x01
16#define XT_DCCP_DEST_PORTS 0x02
17#define XT_DCCP_TYPE 0x04
18#define XT_DCCP_OPTION 0x08
19
20#define XT_DCCP_VALID_FLAGS 0x0f
21
22struct xt_dccp_info {
23 u_int16_t dpts[2];
24 u_int16_t spts[2];
25
26 u_int16_t flags;
27 u_int16_t invflags;
28
29 u_int16_t typemask;
30 u_int8_t option;
31};
32
33#endif
34
35