1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-02-04 17:14:14 +00:00
This commit is contained in:
Jeff Becker 2016-08-21 19:38:12 -04:00
parent 287e32aaed
commit bf46c241d0
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B

View File

@ -594,7 +594,7 @@ namespace client
{ {
i2p::datagram::DatagramDestination * dgram = m_Destination->CreateDatagramDestination(); i2p::datagram::DatagramDestination * dgram = m_Destination->CreateDatagramDestination();
if(dgram) if(dgram)
dgram->SetReceiver(std::bind(&I2PUDPServerTunnel::HandleRecvFromI2P, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4, std::placeholders::_5)); dgram->SetReceiver(std::bind(&I2PUDPServerTunnel::HandleRecvFromI2P, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4, std::placeholders::_5), LocalPort);
} }
I2PUDPServerTunnel::~I2PUDPServerTunnel() I2PUDPServerTunnel::~I2PUDPServerTunnel()