mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47:39 +03:00
Fix interface callback
This commit is contained in:
parent
64c0f526fd
commit
b4300eaa6a
7 changed files with 16 additions and 22 deletions
|
@ -16,6 +16,7 @@ import (
|
|||
"github.com/sagernet/sing/common"
|
||||
"github.com/sagernet/sing/common/buf"
|
||||
"github.com/sagernet/sing/common/bufio"
|
||||
"github.com/sagernet/sing/common/control"
|
||||
E "github.com/sagernet/sing/common/exceptions"
|
||||
N "github.com/sagernet/sing/common/network"
|
||||
"github.com/sagernet/sing/common/rw"
|
||||
|
@ -881,8 +882,8 @@ func (t *NativeTun) resetRules() error {
|
|||
return t.setRules()
|
||||
}
|
||||
|
||||
func (t *NativeTun) routeUpdate(event int) {
|
||||
if event&EventAndroidVPNUpdate == 0 {
|
||||
func (t *NativeTun) routeUpdate(_ *control.Interface, flags int) {
|
||||
if flags&FlagAndroidVPNUpdate == 0 {
|
||||
return
|
||||
}
|
||||
err := t.resetRules()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue