aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_basic/connection_context.h
diff options
context:
space:
mode:
authorAlexander Blair <snipa@jagtech.io>2021-01-01 22:35:59 -0800
committerAlexander Blair <snipa@jagtech.io>2021-01-01 22:35:59 -0800
commit16c780d5688c7931ca6f55537c9cc8c1d4abc3dd (patch)
tree9efba2d35c48d1f6b592d54211b1bd52bfed0a36 /src/cryptonote_basic/connection_context.h
parentMerge pull request #7246 (diff)
parentAdd aggressive restrictions to pre-handshake p2p buffer limit (diff)
downloadmonero-16c780d5688c7931ca6f55537c9cc8c1d4abc3dd.tar.xz
Merge pull request #7250
61b6e4cc6 Add aggressive restrictions to pre-handshake p2p buffer limit (Lee Clagett)
Diffstat (limited to 'src/cryptonote_basic/connection_context.h')
-rw-r--r--src/cryptonote_basic/connection_context.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cryptonote_basic/connection_context.h b/src/cryptonote_basic/connection_context.h
index 9e012f8f5..e5c00d4f3 100644
--- a/src/cryptonote_basic/connection_context.h
+++ b/src/cryptonote_basic/connection_context.h
@@ -55,6 +55,8 @@ namespace cryptonote
state_normal
};
+ bool handshake_complete() const noexcept { return m_state != state_before_handshake; }
+
state m_state;
std::vector<std::pair<crypto::hash, uint64_t>> m_needed_objects;
std::unordered_set<crypto::hash> m_requested_objects;