mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-12 20:36:38 +01:00
don't recreate existing streaming destination
This commit is contained in:
parent
b8032e7fbf
commit
7c2da75197
1 changed files with 5 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2013-2022, The PurpleI2P Project
|
||||
* Copyright (c) 2013-2023, The PurpleI2P Project
|
||||
*
|
||||
* This file is part of Purple i2pd project and licensed under BSD3
|
||||
*
|
||||
|
@ -691,7 +691,10 @@ namespace client
|
|||
int port, std::shared_ptr<ClientDestination> localDestination, int inport, bool gzip):
|
||||
I2PService (localDestination), m_IsUniqueLocal(true), m_Name (name), m_Address (address), m_Port (port), m_IsAccessList (false)
|
||||
{
|
||||
m_PortDestination = localDestination->CreateStreamingDestination (inport > 0 ? inport : port, gzip);
|
||||
if (!inport) inport = port;
|
||||
m_PortDestination = localDestination->GetStreamingDestination (inport);
|
||||
if (!m_PortDestination)
|
||||
m_PortDestination = localDestination->CreateStreamingDestination (inport, gzip);
|
||||
}
|
||||
|
||||
void I2PServerTunnel::Start ()
|
||||
|
|
Loading…
Add table
Reference in a new issue