mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-05 21:07:43 +03:00
avoid netlink dos networkUpdateMonitor
This commit is contained in:
parent
cddf60537d
commit
fc63ec9388
1 changed files with 10 additions and 0 deletions
|
@ -4,6 +4,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"runtime"
|
"runtime"
|
||||||
"sync"
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/sagernet/netlink"
|
"github.com/sagernet/netlink"
|
||||||
E "github.com/sagernet/sing/common/exceptions"
|
E "github.com/sagernet/sing/common/exceptions"
|
||||||
|
@ -67,6 +68,9 @@ func (m *networkUpdateMonitor) Start() error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *networkUpdateMonitor) loopUpdate() {
|
func (m *networkUpdateMonitor) loopUpdate() {
|
||||||
|
const minDuration = time.Second
|
||||||
|
timer := time.NewTimer(minDuration)
|
||||||
|
defer timer.Stop()
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-m.close:
|
case <-m.close:
|
||||||
|
@ -75,6 +79,12 @@ func (m *networkUpdateMonitor) loopUpdate() {
|
||||||
case <-m.linkUpdate:
|
case <-m.linkUpdate:
|
||||||
}
|
}
|
||||||
m.emit()
|
m.emit()
|
||||||
|
select {
|
||||||
|
case <-m.close:
|
||||||
|
return
|
||||||
|
case <-timer.C:
|
||||||
|
timer.Reset(minDuration)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue