chore(dns): increase MaxConnsPerHost (#1834)

This commit is contained in:
5aaee9 2025-02-10 15:21:18 +08:00 committed by GitHub
parent ccc3f84da2
commit 9074b78e36
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,13 +37,14 @@ const (
transportDefaultIdleConnTimeout = 5 * time.Minute
// dohMaxConnsPerHost controls the maximum number of connections for
// each host.
dohMaxConnsPerHost = 1
// each host. Note, that setting it to 1 may cause issues with Go's http
// implementation, see https://github.com/AdguardTeam/dnsproxy/issues/278.
dohMaxConnsPerHost = 2
dialTimeout = 10 * time.Second
// dohMaxIdleConns controls the maximum number of connections being idle
// at the same time.
dohMaxIdleConns = 1
dohMaxIdleConns = 2
maxElapsedTime = time.Second * 30
)