Fix interface callback

This commit is contained in:
世界 2024-11-12 23:18:20 +08:00
parent 64c0f526fd
commit b4300eaa6a
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
7 changed files with 16 additions and 22 deletions

View file

@ -84,7 +84,7 @@ func (m *defaultInterfaceMonitor) postCheckUpdate() {
if !m.noRoute {
m.noRoute = true
m.defaultInterface.Store(nil)
m.emit(EventNoRoute)
m.emit(nil, 0)
}
} else if err != nil {
m.logger.Error("check interface: ", err)
@ -124,11 +124,11 @@ func (m *defaultInterfaceMonitor) UnregisterCallback(element *list.Element[Defau
m.callbacks.Remove(element)
}
func (m *defaultInterfaceMonitor) emit(event int) {
func (m *defaultInterfaceMonitor) emit(defaultInterface *control.Interface, flags int) {
m.access.Lock()
callbacks := m.callbacks.Array()
m.access.Unlock()
for _, callback := range callbacks {
callback(event)
callback(defaultInterface, flags)
}
}