Files

15 lines
207 B
Go
Raw Permalink Normal View History

2024-02-17 22:51:37 -05:00
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
)