1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-24 06:04:27 -04:00
v2fly/testing/servers/udp/port.go

20 lines
434 B
Go
Raw Normal View History

2017-11-14 17:45:07 -05:00
package udp
import (
"v2ray.com/core/common"
"v2ray.com/core/common/net"
)
2018-03-01 05:53:39 -05:00
// PickPort returns an unused UDP port in the system. The port returned is highly likely to be unused, but not guaranteed.
2017-11-14 17:45:07 -05:00
func PickPort() net.Port {
conn, err := net.ListenUDP("udp4", &net.UDPAddr{
IP: net.LocalHostIP.IP(),
Port: 0,
})
common.Must(err)
defer conn.Close()
addr := conn.LocalAddr().(*net.UDPAddr)
return net.Port(addr.Port)
}