Skip to content

Commit

Permalink
Fixed a typo -- meant for 100MB
Browse files Browse the repository at this point in the history
  • Loading branch information
lijunwangs committed Jul 6, 2023
1 parent 7fda1d2 commit 28c0b35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quinn/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit 28c0b35

Please sign in to comment.