14 lines
143 B
Go
Raw Normal View History

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