mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-24 01:46:36 +02:00
osx fix
This commit is contained in:
parent
211660eb3d
commit
3f63732c31
2 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue