From 28c0b35e2b867887fbc26e226f7ece9d26aa213d Mon Sep 17 00:00:00 2001 From: Lijun Wang <83639177+lijunwangs@users.noreply.github.com> Date: Thu, 6 Jul 2023 13:24:48 -0700 Subject: [PATCH] Fixed a typo -- meant for 100MB --- quinn/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quinn/src/lib.rs b/quinn/src/lib.rs index 615863a2a..26ee5f49a 100644 --- a/quinn/src/lib.rs +++ b/quinn/src/lib.rs @@ -119,4 +119,4 @@ const SEND_TIME_BOUND: Duration = Duration::from_micros(50); /// The maximum size of content length of packets in the outgoing transmit queue. Transmit packets /// generated from the endpoint (retry or initial close) can be dropped when this limit is being execeeded. /// Chose to represent 100 MB of data. -const MAX_TRANSMIT_QUEUE_CONTENTS_LEN: usize = 100_0000_000; +const MAX_TRANSMIT_QUEUE_CONTENTS_LEN: usize = 100_000_000;