mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-22 18:50:27 +00:00
Fix multicast bug, set static multicast interval 15 seconds
This commit is contained in:
parent
c0d5a8c0bd
commit
531d9f39ca
@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user