Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ebt_ip.h
Go to the documentation of this file.
1 /*
2  * ebt_ip
3  *
4  * Authors:
5  * Bart De Schuymer <[email protected]>
6  *
7  * April, 2002
8  *
9  * Changes:
10  * added ip-sport and ip-dport
11  * Innominate Security Technologies AG <[email protected]>
12  * September, 2002
13  */
14 
15 #ifndef __LINUX_BRIDGE_EBT_IP_H
16 #define __LINUX_BRIDGE_EBT_IP_H
17 
18 #include <linux/types.h>
19 
20 #define EBT_IP_SOURCE 0x01
21 #define EBT_IP_DEST 0x02
22 #define EBT_IP_TOS 0x04
23 #define EBT_IP_PROTO 0x08
24 #define EBT_IP_SPORT 0x10
25 #define EBT_IP_DPORT 0x20
26 #define EBT_IP_MASK (EBT_IP_SOURCE | EBT_IP_DEST | EBT_IP_TOS | EBT_IP_PROTO |\
27  EBT_IP_SPORT | EBT_IP_DPORT )
28 #define EBT_IP_MATCH "ip"
29 
30 /* the same values are used for the invflags */
31 struct ebt_ip_info {
42 };
43 
44 #endif