[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20100927133100.GB8916@babylon>
Date: Mon, 27 Sep 2010 15:31:00 +0200
From: Ulrich Weber <uweber@...aro.com>
To: davem@...emloft.net
Cc: netdev@...r.kernel.org
Subject: [PATCH] tproxy: check for transparent flag in ip_route_newports
as done in ip_route_connect()
Signed-off-by: Ulrich Weber <uweber@...aro.com>
---
include/net/route.h | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/include/net/route.h b/include/net/route.h
index bd732d6..7e5e73b 100644
--- a/include/net/route.h
+++ b/include/net/route.h
@@ -199,6 +199,8 @@ static inline int ip_route_newports(struct rtable **rp, u8 protocol,
fl.fl_ip_sport = sport;
fl.fl_ip_dport = dport;
fl.proto = protocol;
+ if (inet_sk(sk)->transparent)
+ fl.flags |= FLOWI_FLAG_ANYSRC;
ip_rt_put(*rp);
*rp = NULL;
security_sk_classify_flow(sk, &fl);
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists