mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 11:04:00 +01:00
Merge pull request #983 from majestrate/i2np-transport-limits
fix limits when not specififed
This commit is contained in:
commit
bec24e052c
|
@ -156,7 +156,7 @@ namespace transport
|
||||||
uint16_t softLimit, hardLimit;
|
uint16_t softLimit, hardLimit;
|
||||||
i2p::config::GetOption("limits.ntcpsoft", softLimit);
|
i2p::config::GetOption("limits.ntcpsoft", softLimit);
|
||||||
i2p::config::GetOption("limits.ntcphard", hardLimit);
|
i2p::config::GetOption("limits.ntcphard", hardLimit);
|
||||||
if(softLimit >= hardLimit)
|
if(softLimit > 0 && hardLimit > 0 && softLimit >= hardLimit)
|
||||||
{
|
{
|
||||||
LogPrint(eLogError, "ntcp soft limit must be less than ntcp hard limit");
|
LogPrint(eLogError, "ntcp soft limit must be less than ntcp hard limit");
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue