[netdrvr gianfar] use new phy layer
[linux-2.6/libata-dev.git] / include / linux / netfilter_ipv4 / ipt_dccp.h
blob3cb3a522e62b78cd32ecbcaee5a6a65816ae1822
1 #ifndef _IPT_DCCP_H_
2 #define _IPT_DCCP_H_
4 #define IPT_DCCP_SRC_PORTS 0x01
5 #define IPT_DCCP_DEST_PORTS 0x02
6 #define IPT_DCCP_TYPE 0x04
7 #define IPT_DCCP_OPTION 0x08
9 #define IPT_DCCP_VALID_FLAGS 0x0f
11 struct ipt_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 /* _IPT_DCCP_H_ */