blob: 5e74e3b03bd6bf9cb13592fe3de438eef729d333 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __LINUX_BRIDGE_EBT_NAT_H
2#define __LINUX_BRIDGE_EBT_NAT_H
3
Bart De Schuymerd12cdc32006-11-29 02:35:40 +01004#define NAT_ARP_BIT (0x00000010)
Eric Dumazetd94d9fe2009-11-04 09:50:58 -08005struct ebt_nat_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 unsigned char mac[ETH_ALEN];
7 /* EBT_ACCEPT, EBT_DROP, EBT_CONTINUE or EBT_RETURN */
8 int target;
9};
10#define EBT_SNAT_TARGET "snat"
11#define EBT_DNAT_TARGET "dnat"
12
13#endif