Use unique names for UPnP mappings (fixes #1100, fixes #1128)

This commit is contained in:
Audrius Butkevicius 2014-12-30 21:46:48 +00:00
parent cb1678ebec
commit bf40dadf04
1 changed files with 1 additions and 1 deletions

View File

@ -795,7 +795,7 @@ func setupExternalPort(igd *upnp.IGD, port int) int {
for i := 0; i < 10; i++ {
r := 1024 + predictableRandom.Intn(65535-1024)
err := igd.AddPortMapping(upnp.TCP, r, port, "syncthing", cfg.Options().UPnPLease*60)
err := igd.AddPortMapping(upnp.TCP, r, port, fmt.Sprintf("syncthing-%d", r), cfg.Options().UPnPLease*60)
if err == nil {
return r
}