dns: amlog hook & subdomain wildcard parse

This commit is contained in:
2024-05-09 09:48:08 +08:00
parent 25e954fb55
commit 04fcd0d09a
2 changed files with 44 additions and 7 deletions

View File

@ -126,7 +126,13 @@ HRESULT dns_platform_hook_init(const struct dns_config *cfg)
// Disable api/polling to the original servers
hr = dns_hook_push(L"amlog.sys-all.net", NULL);
hr = dns_hook_push(L"*.amlog.sys-all.net", NULL);
if (FAILED(hr)) {
return hr;
}
hr = dns_hook_push(L"*.d-amlog.sys-all.net", NULL);
if (FAILED(hr)) {
return hr;