blob: 4c393c3726cf0a64141280b7944e95b8ec1ffcf5 (
plain)
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
|
package util
import (
"net"
"strings"
"syscall"
"errors"
)
func CreateListener(address string) (net.Listener, error) {
dsn := strings.Split(address, "://")
if len(dsn) != 2 {
return nil, errors.New("Invalid DSN (tcp://:6001, unix://file.sock)")
}
if dsn[0] != "unix" && dsn[0] != "tcp" {
return nil, errors.New("Invalid Protocol (tcp://:6001, unix://file.sock)")
}
if dsn[0] == "unix" {
syscall.Unlink(dsn[1])
}
return net.Listen(dsn[0], dsn[1])
}
|