mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-12-13 05:14:17 +04:00
13 lines
131 B
Go
13 lines
131 B
Go
|
|
package burst
|
||
|
|
|
||
|
|
import (
|
||
|
|
"math"
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
const (
|
||
|
|
rttFailed = time.Duration(math.MaxInt64 - iota)
|
||
|
|
rttUntested
|
||
|
|
rttUnqualified
|
||
|
|
)
|