Skip to content

Commit

Permalink
Reduce MSS constant to 4096 bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
nullchinchilla committed Mar 18, 2024
1 parent 21275a7 commit a363883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/picomux/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ use crate::frame::{Header, PingInfo};

const INIT_WINDOW: usize = 10;
const MAX_WINDOW: usize = 500;
const MSS: usize = 16384;
const MSS: usize = 4096;

#[derive(Clone, Copy, Debug)]
pub struct LivenessConfig {
Expand Down

0 comments on commit a363883

Please sign in to comment.