1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-20 10:56:07 -04:00
v2fly/app/observatory/burst/burst.go

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
)