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

14 lines
143 B
Go
Raw Normal View History

2015-11-01 20:32:08 +00:00
package testing
import (
"sync/atomic"
)
var (
port = int32(30000)
)
func PickPort() uint16 {
return uint16(atomic.AddInt32(&port, 1))
}