mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 20:07:40 +03:00
Fix interface callback
This commit is contained in:
parent
64c0f526fd
commit
b4300eaa6a
7 changed files with 16 additions and 22 deletions
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue