From da2c04f6815e76eb8c74d8b3d5709374deb188c7 Mon Sep 17 00:00:00 2001 From: hagen Date: Fri, 1 Jul 2016 00:00:00 +0000 Subject: [PATCH] * HTTPProxy.cpp : show created stream IDs in log --- HTTPProxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HTTPProxy.cpp b/HTTPProxy.cpp index 15e9f539..e70eb8ab 100644 --- a/HTTPProxy.cpp +++ b/HTTPProxy.cpp @@ -296,7 +296,7 @@ namespace proxy { } if (Kill()) return; - LogPrint (eLogDebug, "HTTPProxy: Created new I2PTunnel stream"); + LogPrint (eLogDebug, "HTTPProxy: Created new I2PTunnel stream, sSID=", stream->GetSendStreamID(), ", rSID=", stream->GetRecvStreamID()); auto connection = std::make_shared(GetOwner(), m_sock, stream); GetOwner()->AddHandler (connection); connection->I2PConnect (reinterpret_cast(m_send_buf.data()), m_send_buf.length());