Browse Source

fix up compiler warnings

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

8
ClientContext.cpp

@ -531,6 +531,7 @@ namespace client @@ -531,6 +531,7 @@ namespace client
LogPrint (eLogInfo, "Clients: ", numClientTunnels, " I2P client tunnels created");
LogPrint (eLogInfo, "Clients: ", numServerTunnels, " I2P server tunnels created");
}
void ClientContext::ScheduleCleanupUDP()
{
// schedule cleanup in 1 second
@ -540,11 +541,10 @@ namespace client @@ -540,11 +541,10 @@ namespace client
void ClientContext::CleanupUDP(const boost::system::error_code & ecode)
{
if(!ecode) {
if(!ecode)
{
std::lock_guard<std::mutex> lock(m_ForwardsMutex);
for ( auto & s : m_ServerForwards ) {
s.second->ExpireStale();
}
for ( auto & s : m_ServerForwards ) s.second->ExpireStale();
ScheduleCleanupUDP();
}
}

4
I2PTunnel.cpp

@ -609,9 +609,9 @@ namespace client @@ -609,9 +609,9 @@ namespace client
I2PUDPServerTunnel::I2PUDPServerTunnel(const std::string & name, std::shared_ptr<i2p::client::ClientDestination> localDestination,
const boost::asio::ip::address& localAddress, boost::asio::ip::udp::endpoint forwardTo, uint16_t port) :
m_LocalAddress(localAddress),
m_Name(name),
LocalPort(port),
m_LocalAddress(localAddress),
m_RemoteEndpoint(forwardTo)
{
m_LocalDest = localDestination;
@ -639,9 +639,9 @@ namespace client @@ -639,9 +639,9 @@ namespace client
m_Name(name),
m_Session(nullptr),
m_RemoteDest(remoteDest),
m_RemoteIdent(nullptr),
m_LocalDest(localDestination),
m_LocalEndpoint(localEndpoint),
m_RemoteIdent(nullptr),
m_ResolveThread(nullptr),
LocalPort(localEndpoint.port()),
RemotePort(remotePort),

Loading…
Cancel
Save