mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-30 04:37:50 +02:00
Make address for proxies, BOB, SAM, ... configurable (#235).
This commit is contained in:
parent
a7da2423ce
commit
524a02cb0d
16 changed files with 112 additions and 72 deletions
|
@ -256,8 +256,12 @@ namespace client
|
|||
Done(shared_from_this());
|
||||
}
|
||||
|
||||
I2PClientTunnel::I2PClientTunnel (const std::string& destination, int port, std::shared_ptr<ClientDestination> localDestination, int destinationPort):
|
||||
TCPIPAcceptor (port,localDestination), m_Destination (destination), m_DestinationIdentHash (nullptr), m_DestinationPort (destinationPort)
|
||||
I2PClientTunnel::I2PClientTunnel(
|
||||
const std::string& destination, const std::string& address, int port,
|
||||
std::shared_ptr<ClientDestination> localDestination, int destinationPort
|
||||
)
|
||||
: TCPIPAcceptor(address, port, localDestination), m_Destination(destination),
|
||||
m_DestinationIdentHash(nullptr), m_DestinationPort(destinationPort)
|
||||
{}
|
||||
|
||||
void I2PClientTunnel::Start ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue