diff options
| author | Lee Clagett <code@leeclagett.com> | 2020-12-29 19:58:53 -0500 |
|---|---|---|
| committer | Lee Clagett <code@leeclagett.com> | 2020-12-17 00:36:10 +0000 |
| commit | 61b6e4cc67abd61a0dbffe271ee3f355b2e772bc (patch) | |
| tree | aa63b9684b9138a6f58f18678307d353aec67c10 /src/cryptonote_protocol/cryptonote_protocol_handler.inl | |
| parent | a1eca8ca7e595f33a44cd77ac1759b2fd9f97a7d (diff) | |
| download | monzero-core-61b6e4cc67abd61a0dbffe271ee3f355b2e772bc.tar.gz monzero-core-61b6e4cc67abd61a0dbffe271ee3f355b2e772bc.tar.xz monzero-core-61b6e4cc67abd61a0dbffe271ee3f355b2e772bc.zip | |
Add aggressive restrictions to pre-handshake p2p buffer limit
Diffstat (limited to 'src/cryptonote_protocol/cryptonote_protocol_handler.inl')
| -rw-r--r-- | src/cryptonote_protocol/cryptonote_protocol_handler.inl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cryptonote_protocol/cryptonote_protocol_handler.inl b/src/cryptonote_protocol/cryptonote_protocol_handler.inl index 22e87465f..6683b97be 100644 --- a/src/cryptonote_protocol/cryptonote_protocol_handler.inl +++ b/src/cryptonote_protocol/cryptonote_protocol_handler.inl @@ -2634,6 +2634,7 @@ skip: std::vector<std::pair<epee::net_utils::zone, boost::uuids::uuid>> fullConnections, fluffyConnections; m_p2p->for_each_connection([this, &exclude_context, &fullConnections, &fluffyConnections](connection_context& context, nodetool::peerid_type peer_id, uint32_t support_flags) { + // peer_id also filters out connections before handshake if (peer_id && exclude_context.m_connection_id != context.m_connection_id && context.m_remote_address.get_zone() == epee::net_utils::zone::public_) { if(m_core.fluffy_blocks_enabled() && (support_flags & P2P_SUPPORT_FLAG_FLUFFY_BLOCKS)) |
