mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47:39 +03:00
Merge 4f064aba6a
into 35b5747b44
This commit is contained in:
commit
83d8768777
1 changed files with 12 additions and 0 deletions
|
@ -89,6 +89,12 @@ func (t *NativeTun) configure() error {
|
|||
return E.Cause(err, "set ipv4 dns")
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// If no IPv4 address is set, remove any existing IPv4 DNS servers
|
||||
err := luid.SetDNS(winipcfg.AddressFamily(windows.AF_INET), nil, nil)
|
||||
if err != nil {
|
||||
return E.Cause(err, "remove ipv4 dns")
|
||||
}
|
||||
}
|
||||
if len(t.options.Inet6Address) > 0 {
|
||||
err := luid.SetIPAddressesForFamily(winipcfg.AddressFamily(windows.AF_INET6), t.options.Inet6Address)
|
||||
|
@ -112,6 +118,12 @@ func (t *NativeTun) configure() error {
|
|||
return E.Cause(err, "set ipv6 dns")
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// If no IPv6 address is set, remove any existing IPv6 DNS servers
|
||||
err := luid.SetDNS(winipcfg.AddressFamily(windows.AF_INET6), nil, nil)
|
||||
if err != nil {
|
||||
return E.Cause(err, "remove ipv6 dns")
|
||||
}
|
||||
}
|
||||
if len(t.options.Inet4Address) > 0 || len(t.options.Inet6Address) > 0 {
|
||||
_ = luid.DisableDNSRegistration()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue