4
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2025-06-15 15:36:06 +00:00

Fix panic in tcp.init for incorrectly formatted listen addresses

This commit is contained in:
Neil Alexander
2022-09-01 16:56:42 +01:00
parent 486ffebedd
commit 4f2abece81

View File

@ -109,6 +109,7 @@ func (t *tcp) init(l *links, listeners []ListenAddress) error {
u, err := url.Parse(string(listenaddr))
if err != nil {
t.links.core.log.Errorln("Failed to parse listener: listener", listenaddr, "is not correctly formatted, ignoring")
continue
}
if _, err := t.listenURL(u, ""); err != nil {
return err