1
2
3
4
5
6
7
8
9
10
11
12
13
14
| 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
| )
|
|