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

Commit b042bcaa 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 am: da984950

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

Change-Id: I986fefe7d2fa550237004d271295cd6c39ce3725
parents d54b372a da984950
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> {