diff options
author | KOVACS Krisztian <hidden@sch.bme.hu> | 2008-10-01 07:33:10 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-10-01 07:33:10 -0700 |
commit | 1668e010cbe1a7567c81d4c02d31dde9859e9da1 (patch) | |
tree | f3505d22a93ed9a4b6140a7f98a9d4cc2c1f66e9 /net/ipv4 | |
parent | b9fb15067ce93497bef852c05e406d7a96212a9a (diff) | |
download | linux-3.10-1668e010cbe1a7567c81d4c02d31dde9859e9da1.tar.gz linux-3.10-1668e010cbe1a7567c81d4c02d31dde9859e9da1.tar.bz2 linux-3.10-1668e010cbe1a7567c81d4c02d31dde9859e9da1.zip |
ipv4: Make inet_sock.h independent of route.h
inet_iif() in inet_sock.h requires route.h. Since users of inet_iif()
usually require other route.h functionality anyway this patch moves
inet_iif() to route.h.
Signed-off-by: KOVACS Krisztian <hidden@sch.bme.hu>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/netfilter/nf_nat_helper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv4/netfilter/nf_nat_helper.c b/net/ipv4/netfilter/nf_nat_helper.c index 11976ea2988..112dcfa1290 100644 --- a/net/ipv4/netfilter/nf_nat_helper.c +++ b/net/ipv4/netfilter/nf_nat_helper.c @@ -16,6 +16,7 @@ #include <linux/udp.h> #include <net/checksum.h> #include <net/tcp.h> +#include <net/route.h> #include <linux/netfilter_ipv4.h> #include <net/netfilter/nf_conntrack.h> |