1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-02 23:35:40 -05:00

dynamic allocation of inbounds

This commit is contained in:
v2ray
2016-01-22 16:25:01 +01:00
parent f478db2b2e
commit 98d99a1fd0
6 changed files with 274 additions and 8 deletions

View File

@@ -1,15 +1,10 @@
package testing
import (
"sync/atomic"
"github.com/v2ray/v2ray-core/common/dice"
v2net "github.com/v2ray/v2ray-core/common/net"
)
var (
port = int32(30000)
)
func PickPort() v2net.Port {
return v2net.Port(atomic.AddInt32(&port, 1))
return v2net.Port(30000 + dice.Roll(10000))
}