tc_nat.h 281 字节
Newer Older
H
Herbert Xu 已提交
1 2 3 4 5 6 7
#ifndef __NET_TC_NAT_H
#define __NET_TC_NAT_H

#include <linux/types.h>
#include <net/act_api.h>

struct tcf_nat {
8
	struct tc_action common;
H
Herbert Xu 已提交
9 10 11 12 13 14 15

	__be32 old_addr;
	__be32 new_addr;
	__be32 mask;
	u32 flags;
};

16
#define to_tcf_nat(a) ((struct tcf_nat *)a)
H
Herbert Xu 已提交
17 18

#endif /* __NET_TC_NAT_H */