Browse Source

fix

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

2
I2PTunnel.cpp

@ -574,7 +574,7 @@ namespace client @@ -574,7 +574,7 @@ namespace client
auto dgram = Destination->GetDatagramDestination();
if(dgram) {
LastActivity = i2p::util::GetMillisecondsSinceEpoch();
dgram->SendDatagramTo(m_Buffer, len, Identity, RemotePort, LocalPort);
dgram->SendDatagramTo(m_Buffer, len, Identity, LocalPort, RemotePort);
LogPrint(eLogDebug, "UDPSession: forward ", len, "B to ", Identity.ToBase32(), " from ", Destination->GetIdentHash().ToBase32());
} else {
LogPrint(eLogWarning, "UDPSession: no datagram destination");

Loading…
Cancel
Save