4
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2025-06-22 17:27:13 +00:00

Merge pull request #158 from neilalexander/unixsockets

Fallback to TCP when parsing AdminListen
This commit is contained in:
Neil Alexander
2018-07-08 10:43:40 +01:00
committed by GitHub

View File

@ -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)