mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-06 15:13:01 +00: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
|
||
|
)
|