-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupport.go
47 lines (40 loc) · 857 Bytes
/
support.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package main
import (
"net"
"strconv"
)
// AddrPort returns the port from a network end point address.
func AddrPort(addr string) (int, error) {
_, portStr, e := net.SplitHostPort(addr)
if e != nil {
return 0, e
}
port, err := strconv.Atoi(portStr)
if err != nil {
return 0, err
}
return port, nil
}
// FreePort returns an unused port.
func FreePort() (int, error) {
l, err := NewLocalListener()
if err != nil {
return -1, err
}
defer l.Close()
port, err := AddrPort(l.Addr().String())
if err != nil {
return -1, err
}
return port, nil
}
// NewLocalListener returns an unused Listener on the local network address.
func NewLocalListener() (net.Listener, error) {
l, err := net.Listen("tcp", "127.0.0.1:0")
if err != nil {
if l, err = net.Listen("tcp6", "[::1]:0"); err != nil {
return nil, err
}
}
return l, nil
}