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

Commit da984950 authored by Mike Yu's avatar Mike Yu Committed by Automerger Merge Worker
Browse files

Merge "Shorten the value of max_idle_timeout" am: e34efd08 am: 39c97c11

Original change: https://android-review.googlesource.com/c/platform/packages/modules/DnsResolver/+/1888059

Change-Id: I0a9771ad476794b6f449afd0b6152937d1abd902
parents 394f2537 39c97c11
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> {