-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnet.go
59 lines (55 loc) · 931 Bytes
/
net.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
48
49
50
51
52
53
54
55
56
57
58
59
package selenium
import (
"errors"
"fmt"
"math/rand"
"net"
"os"
"syscall"
"time"
)
func isSysErrEACCES(port int) bool {
l, err := net.Listen("tcp", fmt.Sprintf("localhost:%d", port))
if err != nil {
var ope = &net.OpError{}
if errors.As(err, &ope) {
var syse = &os.SyscallError{}
if errors.As(ope.Err, &syse) {
if syse.Err == syscall.EACCES {
return true
} else {
panic(err)
}
} else {
panic(err)
}
} else {
panic(err)
}
}
l.Close()
return false
}
func RanPort() int {
rand.Seed(time.Now().Unix())
random := rand.Intn(65535+1024) - 1024
if random < 0 {
random = 1024
}
return random
}
func FindFreePort() (int, error) {
port := RanPort()
if port+5 >= 65535 {
port = port - 5
}
for i := 0; i < 5; i++ {
port = port + i
if isSysErrEACCES(port) {
continue
} else {
return port, nil
}
}
return -1, errors.New("unable to find a free port")
}