1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-02-04 04:44:14 +00:00
This commit is contained in:
Jeff Becker 2016-08-21 22:26:30 -04:00
parent 211660eb3d
commit 3f63732c31
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B
2 changed files with 2 additions and 2 deletions

View File

@ -546,7 +546,7 @@ namespace client
} }
UDPSession::UDPSession(boost::asio::io_service & ios, boost::asio::ip::udp::endpoint localEndpoint, const std::shared_ptr<i2p::client::ClientDestination> & localDestination, boost::asio::ip::udp::endpoint endpoint, const i2p::data::IdentHash to, uint16_t ourPort, uint16_t theirPort) : UDPSession::UDPSession(boost::asio::io_service & ios, boost::asio::ip::udp::endpoint localEndpoint, const std::shared_ptr<i2p::client::ClientDestination> & localDestination, boost::asio::ip::udp::endpoint endpoint, const i2p::data::IdentHash to, uint16_t ourPort, uint16_t theirPort) :
m_Destination(localDestination), m_Destination(localDestination.get()),
IPSocket(ios, localEndpoint), IPSocket(ios, localEndpoint),
Identity(to), Identity(to),
SendEndpoint(endpoint), SendEndpoint(endpoint),

View File

@ -140,7 +140,7 @@ namespace client
struct UDPSession struct UDPSession
{ {
std::shared_ptr<i2p::client::ClientDestination> m_Destination; i2p::client::ClientDestination * m_Destination;
boost::asio::ip::udp::socket IPSocket; boost::asio::ip::udp::socket IPSocket;
i2p::data::IdentHash Identity; i2p::data::IdentHash Identity;
boost::asio::ip::udp::endpoint FromEndpoint; boost::asio::ip::udp::endpoint FromEndpoint;