mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-10 06:16:53 -05:00
15 lines
255 B
Go
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
|
|
)
|