mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47:39 +03:00
Flush DNS cache on macOS
This commit is contained in:
parent
ca53ccf346
commit
980d4bf9a3
2 changed files with 14 additions and 6 deletions
|
@ -13,6 +13,7 @@ import (
|
|||
"github.com/sagernet/sing/common/bufio"
|
||||
E "github.com/sagernet/sing/common/exceptions"
|
||||
N "github.com/sagernet/sing/common/network"
|
||||
"github.com/sagernet/sing/common/shell"
|
||||
|
||||
"golang.org/x/net/route"
|
||||
"golang.org/x/sys/unix"
|
||||
|
@ -101,6 +102,7 @@ func (t *NativeTun) Write(p []byte) (n int, err error) {
|
|||
}
|
||||
|
||||
func (t *NativeTun) Close() error {
|
||||
flushDNSCache()
|
||||
return t.tunFile.Close()
|
||||
}
|
||||
|
||||
|
@ -285,6 +287,7 @@ func configure(tunFd int, ifIndex int, name string, options Options) error {
|
|||
}
|
||||
}
|
||||
}
|
||||
flushDNSCache()
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
@ -326,3 +329,7 @@ func addRoute(destination netip.Prefix, gateway netip.Addr) error {
|
|||
return common.Error(unix.Write(socketFd, request))
|
||||
})
|
||||
}
|
||||
|
||||
func flushDNSCache() {
|
||||
shell.Exec("dscacheutil", "-flushcache").Start()
|
||||
}
|
||||
|
|
|
@ -116,6 +116,10 @@ func (t *NativeTun) configure() error {
|
|||
}
|
||||
}
|
||||
}
|
||||
err := windnsapi.FlushResolverCache()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
if len(t.options.Inet4Address) > 0 {
|
||||
inetIf, err := luid.IPInterface(winipcfg.AddressFamily(windows.AF_INET))
|
||||
|
@ -331,11 +335,6 @@ func (t *NativeTun) configure() error {
|
|||
if err != nil {
|
||||
return os.NewSyscallError("FwpmFilterAdd0", err)
|
||||
}
|
||||
|
||||
err = windnsapi.FlushResolverCache()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
|
@ -479,7 +478,9 @@ func (t *NativeTun) Close() error {
|
|||
if t.fwpmSession != 0 {
|
||||
winsys.FwpmEngineClose0(t.fwpmSession)
|
||||
}
|
||||
windnsapi.FlushResolverCache()
|
||||
if t.options.AutoRoute {
|
||||
windnsapi.FlushResolverCache()
|
||||
}
|
||||
})
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue