From d2160efdc8fea10fd1e4c768762e5d7ba05e1159 Mon Sep 17 00:00:00 2001 From: orignal Date: Thu, 17 Jul 2014 07:40:34 -0400 Subject: [PATCH] create inbound tunnel though outbound --- TunnelPool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TunnelPool.cpp b/TunnelPool.cpp index e04cf501..7f65c731 100644 --- a/TunnelPool.cpp +++ b/TunnelPool.cpp @@ -188,7 +188,7 @@ namespace tunnel hops.push_back (hop); } std::reverse (hops.begin (), hops.end ()); - auto * tunnel = tunnels.CreateTunnel (new TunnelConfig (hops)); + auto * tunnel = tunnels.CreateTunnel (new TunnelConfig (hops), outboundTunnel); tunnel->SetTunnelPool (this); }