mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 06:33:02 +00:00
15 lines
207 B
Go
15 lines
207 B
Go
|
package burst
|
||
|
|
||
|
import (
|
||
|
"math"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
//go:generate go run github.com/v2fly/v2ray-core/v4/common/errors/errorgen
|
||
|
|
||
|
const (
|
||
|
rttFailed = time.Duration(math.MaxInt64 - iota)
|
||
|
rttUntested
|
||
|
rttUnqualified
|
||
|
)
|