Browse Source

fixes

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

6
I2PTunnel.cpp

@ -534,7 +534,6 @@ namespace client
for ( UDPSession & s : m_Sessions ) { for ( UDPSession & s : m_Sessions ) {
if ( s.Identity == ih) { if ( s.Identity == ih) {
/** found existing */ /** found existing */
LogPrint(eLogDebug, "UDP Server: found ", s.SendEndpoint);
return s; return s;
} }
} }
@ -555,6 +554,7 @@ namespace client
{ {
Receive(); Receive();
LogPrint(eLogDebug, "UDPSession: bound to ", IPSocket.local_endpoint()); LogPrint(eLogDebug, "UDPSession: bound to ", IPSocket.local_endpoint());
} }
@ -569,11 +569,13 @@ namespace client
if(!ecode) { if(!ecode) {
LogPrint(eLogDebug, "UDPSession: forward ", len, "B from ", FromEndpoint); LogPrint(eLogDebug, "UDPSession: forward ", len, "B from ", FromEndpoint);
if (Destination) { if (Destination) {
auto dgram = Destination->CreateDatagramDestination(); auto dgram = Destination->GetDatagramDestination();
if(dgram) { if(dgram) {
LastActivity = i2p::util::GetMillisecondsSinceEpoch(); LastActivity = i2p::util::GetMillisecondsSinceEpoch();
dgram->SendDatagramTo(m_Buffer, len, Identity, RemotePort, LocalPort); dgram->SendDatagramTo(m_Buffer, len, Identity, RemotePort, LocalPort);
LogPrint(eLogDebug, "UDPSession: forward ", len, "B to ", Identity.ToBase32()); LogPrint(eLogDebug, "UDPSession: forward ", len, "B to ", Identity.ToBase32());
} else {
LogPrint(eLogWarning, "UDPSession: no datagram destination");
} }
} else { } else {
LogPrint(eLogWarning, "UDPSession: no Local Destination"); LogPrint(eLogWarning, "UDPSession: no Local Destination");

Loading…
Cancel
Save