summaryrefslogtreecommitdiffstats
path: root/include/linux/netfilter_ipv4/ipt_physdev.h
blob: 668e1a9faf6f1925fb262d81d520ed9584031819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _IPT_PHYSDEV_H
#define _IPT_PHYSDEV_H

#ifdef __KERNEL__
#include <linux/if.h>
#endif

#define IPT_PHYSDEV_OP_MATCH_IN 0x01
#define IPT_PHYSDEV_OP_MATCH_OUT 0x02

struct ipt_physdev_info {
	u_int8_t invert;
	char physindev[IFNAMSIZ];
	char in_mask[IFNAMSIZ];
	char physoutdev[IFNAMSIZ];
	char out_mask[IFNAMSIZ];
};

#endif /*_IPT_PHYSDEV_H*/