Flush DNS cache on macOS

This commit is contained in:
世界 2023-03-26 10:37:44 +08:00
parent ca53ccf346
commit 980d4bf9a3
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 14 additions and 6 deletions

View file

@ -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()
}