cmd/syncthing: Listening on a 0 port is not valid (fixes #2926)

This commit is contained in:
Audrius Butkevicius 2016-04-09 01:06:55 +00:00 committed by Jakob Borg
parent 668eb7c398
commit 393798098c
1 changed files with 3 additions and 0 deletions

View File

@ -721,6 +721,9 @@ func syncthingMain(runtimeOptions RuntimeOptions) {
if err != nil {
l.Fatalln("Bad listen address:", err)
}
if addr.Port == 0 {
l.Fatalf("Listen address %s: invalid port", uri)
}
// Start UPnP
var upnpService *upnp.Service