mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-18 23:36:39 +01:00
disable connection limiting by default
This commit is contained in:
parent
80a3bd6a3b
commit
a4b39a3648
2 changed files with 5 additions and 2 deletions
|
@ -882,7 +882,8 @@ namespace stream
|
||||||
m_PendingIncomingTimer (m_Owner->GetService ()),
|
m_PendingIncomingTimer (m_Owner->GetService ()),
|
||||||
m_ConnTrackTimer(m_Owner->GetService()),
|
m_ConnTrackTimer(m_Owner->GetService()),
|
||||||
m_ConnsPerMinute(DEFAULT_MAX_CONNS_PER_MIN),
|
m_ConnsPerMinute(DEFAULT_MAX_CONNS_PER_MIN),
|
||||||
m_LastBanClear(i2p::util::GetMillisecondsSinceEpoch())
|
m_LastBanClear(i2p::util::GetMillisecondsSinceEpoch()),
|
||||||
|
m_EnableDrop(false)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -946,7 +947,7 @@ namespace stream
|
||||||
auto incomingStream = CreateNewIncomingStream ();
|
auto incomingStream = CreateNewIncomingStream ();
|
||||||
incomingStream->HandleNextPacket (packet); // SYN
|
incomingStream->HandleNextPacket (packet); // SYN
|
||||||
auto ident = incomingStream->GetRemoteIdentity();
|
auto ident = incomingStream->GetRemoteIdentity();
|
||||||
if(ident)
|
if(ident && m_EnableDrop)
|
||||||
{
|
{
|
||||||
auto ih = ident->GetIdentHash();
|
auto ih = ident->GetIdentHash();
|
||||||
if(DropNewStream(ih))
|
if(DropNewStream(ih))
|
||||||
|
@ -1153,6 +1154,7 @@ namespace stream
|
||||||
|
|
||||||
void StreamingDestination::SetMaxConnsPerMinute(const uint32_t conns)
|
void StreamingDestination::SetMaxConnsPerMinute(const uint32_t conns)
|
||||||
{
|
{
|
||||||
|
m_EnableDrop = conns > 0;
|
||||||
m_ConnsPerMinute = conns;
|
m_ConnsPerMinute = conns;
|
||||||
LogPrint(eLogDebug, "Streaming: Set max conns per minute per destination to ", conns);
|
LogPrint(eLogDebug, "Streaming: Set max conns per minute per destination to ", conns);
|
||||||
}
|
}
|
||||||
|
|
|
@ -317,6 +317,7 @@ namespace stream
|
||||||
uint64_t m_LastBanClear;
|
uint64_t m_LastBanClear;
|
||||||
|
|
||||||
i2p::util::MemoryPool<Packet> m_PacketsPool;
|
i2p::util::MemoryPool<Packet> m_PacketsPool;
|
||||||
|
bool m_EnableDrop;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue