aboutsummaryrefslogtreecommitdiff
path: root/tests/unit_tests
diff options
context:
space:
mode:
authorAlexander Blair <snipa@jagtech.io>2021-01-03 18:23:57 -0800
committerAlexander Blair <snipa@jagtech.io>2021-01-03 18:23:57 -0800
commit7264d648564f94ff57dee2bb398dcd3c4d1511d1 (patch)
tree07fd9dab90af51ab858e532a612cec08b08d2cf2 /tests/unit_tests
parent03cdcd39096763a1599a377254d4caa44391a718 (diff)
parentb652d598d1ed3215150e970dae9673db96c3e39d (diff)
downloadmonzero-core-7264d648564f94ff57dee2bb398dcd3c4d1511d1.tar.gz
monzero-core-7264d648564f94ff57dee2bb398dcd3c4d1511d1.tar.xz
monzero-core-7264d648564f94ff57dee2bb398dcd3c4d1511d1.zip
Merge pull request #7263
b652d598d add a max levin packet size by command type (moneromooo-monero)
Diffstat (limited to 'tests/unit_tests')
-rw-r--r--tests/unit_tests/epee_levin_protocol_handler_async.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unit_tests/epee_levin_protocol_handler_async.cpp b/tests/unit_tests/epee_levin_protocol_handler_async.cpp
index 3dbb36171..a499fa608 100644
--- a/tests/unit_tests/epee_levin_protocol_handler_async.cpp
+++ b/tests/unit_tests/epee_levin_protocol_handler_async.cpp
@@ -45,6 +45,7 @@ namespace
{
static constexpr int handshake_command() noexcept { return 1001; }
static constexpr bool handshake_complete() noexcept { return true; }
+ size_t get_max_bytes(int command) const { return LEVIN_DEFAULT_MAX_PACKET_SIZE; }
};
typedef epee::levin::async_protocol_handler_config<test_levin_connection_context> test_levin_protocol_handler_config;