From b88b04515e92a53c0668badfb4c5d42453e61d2a Mon Sep 17 00:00:00 2001 From: "Francisco Blas (klondike) Izquierdo Riera" Date: Sat, 3 Jan 2015 04:56:34 +0100 Subject: [PATCH] Remove unnecessary RemoteLeaseSet --- I2PTunnel.cpp | 3 +-- I2PTunnel.h | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/I2PTunnel.cpp b/I2PTunnel.cpp index de64259b..e003f7e9 100644 --- a/I2PTunnel.cpp +++ b/I2PTunnel.cpp @@ -169,8 +169,7 @@ namespace client I2PClientTunnel::I2PClientTunnel (const std::string& destination, int port, ClientDestination * localDestination): I2PTunnel (localDestination), m_Acceptor (GetService (), boost::asio::ip::tcp::endpoint (boost::asio::ip::tcp::v4(), port)), - m_Timer (GetService ()), m_Destination (destination), m_DestinationIdentHash (nullptr), - m_RemoteLeaseSet (nullptr) + m_Timer (GetService ()), m_Destination (destination), m_DestinationIdentHash (nullptr) { } diff --git a/I2PTunnel.h b/I2PTunnel.h index a6748ced..2a941f35 100644 --- a/I2PTunnel.h +++ b/I2PTunnel.h @@ -101,7 +101,6 @@ namespace client boost::asio::deadline_timer m_Timer; std::string m_Destination; const i2p::data::IdentHash * m_DestinationIdentHash; - const i2p::data::LeaseSet * m_RemoteLeaseSet; }; class I2PServerTunnel: public I2PTunnel