1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-31 04:44:13 +00:00
This commit is contained in:
Jeff Becker 2016-08-22 17:31:23 -04:00
parent e8195b78ba
commit 42b15e8bbe
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B

View File

@ -590,7 +590,7 @@ namespace client
m_LocalDest = localDestination;
m_LocalDest->Start();
auto dgram = m_LocalDest->CreateDatagramDestination();
dgram->SetReceiver(std::bind(&I2PUDPServerTunnel::HandleRecvFromI2P, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4, std::placeholders::_5), LocalPort);
dgram->SetReceiver(std::bind(&I2PUDPServerTunnel::HandleRecvFromI2P, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4, std::placeholders::_5), 0);
}
I2PUDPServerTunnel::~I2PUDPServerTunnel()