mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-22 00:59:08 +01:00
Remove unnecessary RemoteLeaseSet
This commit is contained in:
parent
ba9a0c0b2e
commit
b88b04515e
2 changed files with 1 additions and 3 deletions
|
@ -169,8 +169,7 @@ namespace client
|
||||||
I2PClientTunnel::I2PClientTunnel (const std::string& destination, int port, ClientDestination * localDestination):
|
I2PClientTunnel::I2PClientTunnel (const std::string& destination, int port, ClientDestination * localDestination):
|
||||||
I2PTunnel (localDestination),
|
I2PTunnel (localDestination),
|
||||||
m_Acceptor (GetService (), boost::asio::ip::tcp::endpoint (boost::asio::ip::tcp::v4(), port)),
|
m_Acceptor (GetService (), boost::asio::ip::tcp::endpoint (boost::asio::ip::tcp::v4(), port)),
|
||||||
m_Timer (GetService ()), m_Destination (destination), m_DestinationIdentHash (nullptr),
|
m_Timer (GetService ()), m_Destination (destination), m_DestinationIdentHash (nullptr)
|
||||||
m_RemoteLeaseSet (nullptr)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -101,7 +101,6 @@ namespace client
|
||||||
boost::asio::deadline_timer m_Timer;
|
boost::asio::deadline_timer m_Timer;
|
||||||
std::string m_Destination;
|
std::string m_Destination;
|
||||||
const i2p::data::IdentHash * m_DestinationIdentHash;
|
const i2p::data::IdentHash * m_DestinationIdentHash;
|
||||||
const i2p::data::LeaseSet * m_RemoteLeaseSet;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class I2PServerTunnel: public I2PTunnel
|
class I2PServerTunnel: public I2PTunnel
|
||||||
|
|
Loading…
Add table
Reference in a new issue