diff mbox

tproxy: check for transparent flag in ip_route_newports

Message ID 20100927133100.GB8916@babylon
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Ulrich Weber Sept. 27, 2010, 1:31 p.m. UTC
as done in ip_route_connect()

Signed-off-by: Ulrich Weber <uweber@astaro.com>
---
 include/net/route.h |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

Comments

David Miller Sept. 27, 2010, 10:03 p.m. UTC | #1
From: Ulrich Weber <uweber@astaro.com>
Date: Mon, 27 Sep 2010 15:31:00 +0200

> as done in ip_route_connect()
> 
> Signed-off-by: Ulrich Weber <uweber@astaro.com>

Applied, thanks for fixing this.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

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);