mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 08:00:38 +03:00
osx fix
This commit is contained in:
parent
211660eb3d
commit
3f63732c31
@ -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) :
|
||||
m_Destination(localDestination),
|
||||
m_Destination(localDestination.get()),
|
||||
IPSocket(ios, localEndpoint),
|
||||
Identity(to),
|
||||
SendEndpoint(endpoint),
|
||||
|
@ -140,7 +140,7 @@ namespace client
|
||||
|
||||
struct UDPSession
|
||||
{
|
||||
std::shared_ptr<i2p::client::ClientDestination> m_Destination;
|
||||
i2p::client::ClientDestination * m_Destination;
|
||||
boost::asio::ip::udp::socket IPSocket;
|
||||
i2p::data::IdentHash Identity;
|
||||
boost::asio::ip::udp::endpoint FromEndpoint;
|
||||
|
Loading…
Reference in New Issue
Block a user