1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-07 20:45:19 -04:00
v2fly/testing/servers/udp/port.go
2022-01-02 15:16:23 +00:00

24 lines
440 B
Go

package udp
import "github.com/v2fly/v2ray-core/v5/common/net"
// PickPort returns an unused UDP port of the system.
func PickPort() net.Port {
conn := pickPort()
defer conn.Close()
addr := conn.LocalAddr().(*net.UDPAddr)
return net.Port(addr.Port)
}
func pickPort() *net.UDPConn {
conn, err := net.ListenUDP("udp4", &net.UDPAddr{
IP: net.LocalHostIP.IP(),
Port: 0,
})
if err != nil {
conn = pickPort()
}
return conn
}