simple http client

This commit is contained in:
2026-01-03 04:20:33 +02:00
parent 1897035d8e
commit 965cecc901
16 changed files with 428 additions and 521 deletions

View File

@@ -79,9 +79,15 @@ CUtlString CAppleTool::BuildPackage( AppleManifest_t manifest, CUtlString szMani
return CUtlString("../%s.ipa", manifest.m_szPackageName.GetString());
}
static IAppleDaemon *appledaemon;
CUtlString CAppleTool::SignPackage( const char *szIpa, const char *szPassword )
{
CreateInterfaceFn fnFactory = Sys_GetFactory("xtool");
if (fnFactory == NULL)
Plat_FatalErrorFunc("Couldn't get xtool\n");
appledaemon = (IAppleDaemon*)fnFactory(APPLE_DAEMON_INTERFACE_VERSION, NULL);
appledaemon->SignPackage(szIpa);
return szIpa;
}