Browse Source

* HTTPProxy.cpp : show created stream IDs in log

pull/572/head
hagen 9 years ago
parent
commit
da2c04f681
  1. 2
      HTTPProxy.cpp

2
HTTPProxy.cpp

@ -296,7 +296,7 @@ namespace proxy { @@ -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<i2p::client::I2PTunnelConnection>(GetOwner(), m_sock, stream);
GetOwner()->AddHandler (connection);
connection->I2PConnect (reinterpret_cast<const uint8_t*>(m_send_buf.data()), m_send_buf.length());

Loading…
Cancel
Save