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

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

View File

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