mirror of
https://github.com/yggdrasil-network/yggdrasil-go
synced 2024-11-09 23:20:26 +03:00
Merge pull request #158 from neilalexander/unixsockets
Fallback to TCP when parsing AdminListen
This commit is contained in:
commit
0d9a6d7a49
@ -245,7 +245,8 @@ func (a *admin) listen() {
|
||||
case "tcp":
|
||||
a.listener, err = net.Listen("tcp", u.Host)
|
||||
default:
|
||||
err = errors.New(fmt.Sprint("protocol not supported: ", u.Scheme))
|
||||
// err = errors.New(fmt.Sprint("protocol not supported: ", u.Scheme))
|
||||
a.listener, err = net.Listen("tcp", a.listenaddr)
|
||||
}
|
||||
} else {
|
||||
a.listener, err = net.Listen("tcp", a.listenaddr)
|
||||
|
Loading…
Reference in New Issue
Block a user