ebt_vlan.h
01: #ifndef __LINUX_BRIDGE_EBT_VLAN_H
02: #define __LINUX_BRIDGE_EBT_VLAN_H
03:
04: #include <linux/types.h>
05:
06: #define EBT_VLAN_ID 0x01
07: #define EBT_VLAN_PRIO 0x02
08: #define EBT_VLAN_ENCAP 0x04
09: #define EBT_VLAN_MASK (EBT_VLAN_ID | EBT_VLAN_PRIO | EBT_VLAN_ENCAP)
10: #define EBT_VLAN_MATCH "vlan"
11:
12: struct ebt_vlan_info {
13: __u16 id;
14: __u8 prio;
15: __be16 encap;
16: __u8 bitmask;
17:
18: __u8 invflags;
19:
20: };
21:
22: #endif
23:
© Andrew Scott 2006 -
2025,
All Rights Reserved