Browse Source

fix

pull/628/head
Jeff Becker 8 years ago
parent
commit
979575c311
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B
  1. 2
      I2PTunnel.cpp

2
I2PTunnel.cpp

@ -659,7 +659,7 @@ namespace client @@ -659,7 +659,7 @@ namespace client
if(m_Session) {
// tell session
LogPrint(eLogDebug, "UDP Client: got ", len, "B from ", from.GetIdentHash().ToBase32(), " via ", m_Session->SendEndpoint);
m_Session->IPSocket.send_to(boost::asio::buffer(buf, len), m_Session->SendEndpoint);
m_Session->IPSocket.send_to(boost::asio::buffer(buf, len), m_Session->FromEndpoint);
} else {
LogPrint(eLogWarning, "UDP Client: no session");
}

Loading…
Cancel
Save