Add some new function names that were cracked from NIDs by zecoxao

He used Claude, never thought of this use case, but it's logical - it
can go reverse engineer the functions to come up with likely names,
making it easier to match the SHA1 hash. (NIDs are truncated SHA1 hashes
of names, except in firmwares later than around 3.50).
This commit is contained in:
Henrik Rydgård
2026-09-10 15:52:53 -06:00
parent 1d7c427eba
commit 86fcfdc60a
5 changed files with 14 additions and 7 deletions
+4 -3
View File
@@ -869,9 +869,10 @@ const HLEFunction sceHttp[] = {
{0X267618F4, &WrapI_IUU<sceHttpSetAuthInfoCallback>, "sceHttpSetAuthInfoCallback", 'i', "ixx" },
{0X569A1481, &WrapI_IUU<sceHttpsSetSslCallback>, "sceHttpsSetSslCallback", 'i', "ixx" },
{0XBAC31BF1, nullptr, "sceHttpsEnableOption", '?', "" },
};
{0xCC920C12, nullptr, "sceHttpEnableNagle", '?', "" },
{0xD29163DA, nullptr, "sceHttpDisableNagle", '?', "" }
};
void Register_sceHttp()
{
void Register_sceHttp() {
RegisterHLEModule("sceHttp",ARRAY_SIZE(sceHttp),sceHttp);
}