mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-04-04 06:13:35 +03:00
Optimize timeoutMs
This commit is contained in:
parent
4afe2d0cff
commit
7c540d3e44
1 changed files with 2 additions and 4 deletions
|
@ -165,13 +165,11 @@ func NewClient(
|
|||
}
|
||||
}
|
||||
|
||||
var timeoutMs time.Duration
|
||||
var timeoutMs = 4000 * time.Millisecond
|
||||
if ns.TimeoutMs > 0 {
|
||||
timeoutMs = time.Duration(ns.TimeoutMs) * time.Millisecond
|
||||
} else {
|
||||
timeoutMs = 4000 * time.Millisecond
|
||||
}
|
||||
|
||||
|
||||
client.server = server
|
||||
client.clientIP = clientIP
|
||||
client.skipFallback = ns.SkipFallback
|
||||
|
|
Loading…
Add table
Reference in a new issue