Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e34efd08 authored by Mike Yu's avatar Mike Yu Committed by Gerrit Code Review
Browse files

Merge "Shorten the value of max_idle_timeout"

parents f974124e 25aca1eb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ const MAX_CONCURRENT_STREAM_SIZE: u64 = 100;
/// Maximum datagram size we will accept.
pub const MAX_DATAGRAM_SIZE: usize = 1350;
/// How long with no packets before we assume a connection is dead, in milliseconds.
pub const QUICHE_IDLE_TIMEOUT_MS: u64 = 180000;
pub const QUICHE_IDLE_TIMEOUT_MS: u64 = 55000;

impl Config {
    fn from_weak(weak: &WeakConfig) -> Option<Self> {