mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-06 15:13:01 +00:00
7086d286be
* Add feature migration notice * Remove legacy code of transport processing * Clear legacy proto field * Fix missing * Unify protocolname * Test remove * Supressor * Weird code * Remove errorgen related comments
13 lines
131 B
Go
13 lines
131 B
Go
package burst
|
|
|
|
import (
|
|
"math"
|
|
"time"
|
|
)
|
|
|
|
const (
|
|
rttFailed = time.Duration(math.MaxInt64 - iota)
|
|
rttUntested
|
|
rttUnqualified
|
|
)
|