1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00

15 lines
255 B
Go
Raw Normal View History

package burst
import (
"math"
"time"
)
//go:generate go run github.com/v2fly/v2ray-core/v5/common/errors/errorgen
const (
rttFailed = time.Duration(math.MaxInt64 - iota)
rttUntested // nolint: varcheck
rttUnqualified // nolint: varcheck
)