dns: added WAHLAP billing DNS block

China have another company named universal service WACCA, but they use same PowerOn and Download Order domain with SEGA official, so we need express `sys-all.cn` is only used for WAHLAP, not all China SEGA games.
WAHLAP have a unused billing domain, just in case, we blocked it now
This commit is contained in:
zaphkito 2024-07-03 18:04:21 +00:00
parent 9353c9872f
commit 8c839b0d4e

View File

@ -109,17 +109,23 @@ HRESULT dns_platform_hook_init(const struct dns_config *cfg)
return hr;
}
// CHN
// PowerOn
// WAHLAP PowerOn
hr = dns_hook_push(L"at.sys-all.cn", cfg->startup);
if (FAILED(hr)) {
return hr;
}
// WeChat AimeDB Server
// WAHLAP WeChat AimeDB Server
hr = dns_hook_push(L"ai.sys-all.cn", cfg->aimedb);
if (FAILED(hr)) {
return hr;
}
// WAHLAP Billing
hr = dns_hook_push(L"ib.sys-all.cn", cfg->billing);
if (FAILED(hr)) {
return hr;
}