Browse Source

osx fix

pull/628/head
Jeff Becker 8 years ago
parent
commit
9062bf14b6
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B
  1. 2
      I2PTunnel.cpp

2
I2PTunnel.cpp

@ -638,7 +638,7 @@ namespace client @@ -638,7 +638,7 @@ namespace client
return;
}
LogPrint(eLogInfo, "UDP Tunnel: resolved ", m_RemoteDest, " to ", m_RemoteIdent->ToBase32());
auto dgram = m_LocalDest->CreateDatagramDestination();
auto dgram = m_LocalDest->CreateDatagramDestination().get();
// delete existing session
if(m_Session) delete m_Session;
boost::asio::ip::udp::endpoint ep(boost::asio::ip::address::from_string("127.0.0.1"), 0);

Loading…
Cancel
Save