1.Add DNS over QUIC support
2.Replace Country.mmdb with GeoIP.dat
3.build with Alpha tag
This commit is contained in:
Clash-Mini
2022-01-27 12:25:53 +08:00
parent 9e4e1482d9
commit be0fadc09e
8 changed files with 338 additions and 39 deletions

View File

@ -61,6 +61,9 @@ func transform(servers []NameServer, resolver *Resolver) []dnsClient {
case "dhcp":
ret = append(ret, newDHCPClient(s.Addr))
continue
case "quic":
ret = append(ret, &quicClient{addr: s.Addr})
continue
}
host, port, _ := net.SplitHostPort(s.Addr)