mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-02-13 10:21:50 +00:00
Merge pull request #158 from neilalexander/unixsockets
Fallback to TCP when parsing AdminListen
This commit is contained in:
commit
0d9a6d7a49
1 changed files with 2 additions and 1 deletions
|
@ -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 a new issue