1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-19 18:36:10 -04:00
v2fly/common/net/testing/port.go

16 lines
200 B
Go
Raw Normal View History

2015-11-01 15:32:08 -05:00
package testing
import (
"sync/atomic"
2015-12-02 15:44:01 -05:00
v2net "github.com/v2ray/v2ray-core/common/net"
2015-11-01 15:32:08 -05:00
)
var (
port = int32(30000)
)
2015-12-02 15:44:01 -05:00
func PickPort() v2net.Port {
2015-12-06 14:38:01 -05:00
return v2net.Port(atomic.AddInt32(&port, 1))
2015-11-01 15:32:08 -05:00
}