Fix multicast bug, set static multicast interval 15 seconds

This commit is contained in:
Neil Alexander 2019-03-06 12:15:40 +00:00
parent c0d5a8c0bd
commit 531d9f39ca
No known key found for this signature in database
GPG Key ID: A02A2019A2BB0944

View File

@ -153,6 +153,7 @@ func (m *multicast) announce() {
m.core.log.Debugln("Started multicasting on", iface.Name) m.core.log.Debugln("Started multicasting on", iface.Name)
// Store the listener so that we can stop it later if needed // Store the listener so that we can stop it later if needed
m.listeners[iface.Name] = l m.listeners[iface.Name] = l
listener = l
} }
} else { } else {
// An existing listener was found // An existing listener was found
@ -171,9 +172,8 @@ func (m *multicast) announce() {
} }
break break
} }
time.Sleep(time.Second)
} }
time.Sleep(time.Second * 5) time.Sleep(time.Second * 15)
} }
} }