mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 20:07:40 +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
|
@ -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