summaryrefslogtreecommitdiff
path: root/datapath/linux-2.6/compat-2.6/include/linux/netfilter_bridge.h
blob: 1c8183c86ce95ced0ebe0d59cae960ad15b12366 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __LINUX_NETFILTER_BRIDGE_WRAPPER_H
#define __LINUX_NETFILTER_BRIDGE_WRAPPER_H

#include_next <linux/netfilter_bridge.h>

#include <linux/version.h>
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)

#include <linux/if_vlan.h>
#include <linux/if_pppox.h>

static inline unsigned int nf_bridge_encap_header_len(const struct sk_buff *skb)
{
	switch (skb->protocol) {
	case __constant_htons(ETH_P_8021Q):
		return VLAN_HLEN;
	default:
		return 0;
	}
}

#endif /* linux version < 2.6.22 */

#endif