dns: forward AbaaS log server to configured server

This commit is contained in:
kyoubate-haruka
2026-05-27 23:24:08 +02:00
parent 31e5cdf76d
commit 2a08e3f59f
+3 -3
View File
@@ -177,15 +177,15 @@ HRESULT dns_platform_hook_init(const struct dns_config *cfg)
return hr;
}
// Disable api/polling to the original servers
// ABaaS log server, receives system and error logs stored in appdata
hr = dns_hook_push(L"*.amlog.sys-all.net", NULL);
hr = dns_hook_push(L"*.amlog.sys-all.net", cfg->startup);
if (FAILED(hr)) {
return hr;
}
hr = dns_hook_push(L"*.d-amlog.sys-all.net", NULL);
hr = dns_hook_push(L"*.d-amlog.sys-all.net", cfg->startup);
if (FAILED(hr)) {
return hr;