mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-19 01:09:58 +00:00
commit
34d6eb52d0
@ -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…
x
Reference in New Issue
Block a user