v2ray-core/common/net/testing/port.go

11 lines
196 B
Go
Raw Normal View History

2015-11-01 20:32:08 +00:00
package testing
import (
2016-01-22 15:25:01 +00:00
"github.com/v2ray/v2ray-core/common/dice"
2015-12-02 20:44:01 +00:00
v2net "github.com/v2ray/v2ray-core/common/net"
2015-11-01 20:32:08 +00:00
)
2015-12-02 20:44:01 +00:00
func PickPort() v2net.Port {
2016-06-03 22:38:22 +00:00
return v2net.Port(30000 + dice.Roll(20000))
2015-11-01 20:32:08 +00:00
}