1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-20 02:46:10 -04:00
v2fly/app/observatory/burst/burst.go
2022-01-02 15:16:23 +00:00

15 lines
255 B
Go

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
)