From f068d86e0deafbe8c73f8423c4f788735123555f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Sun, 28 Nov 2021 22:30:22 +0100 Subject: [PATCH] udp load test: set MAX_PACKET_SIZE to 8192 --- aquatic_udp_load_test/src/worker/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aquatic_udp_load_test/src/worker/mod.rs b/aquatic_udp_load_test/src/worker/mod.rs index 26f5f5a..1968b92 100644 --- a/aquatic_udp_load_test/src/worker/mod.rs +++ b/aquatic_udp_load_test/src/worker/mod.rs @@ -17,7 +17,7 @@ use crate::config::Config; use crate::{common::*, utils::*}; use request_gen::process_response; -const MAX_PACKET_SIZE: usize = 4096; +const MAX_PACKET_SIZE: usize = 8192; pub fn run_worker_thread( state: LoadTestState,