Stub some cellHttpAuth* functions

This commit is contained in:
scribam 2017-06-20 19:28:56 +02:00 committed by Ivan
parent 72590e2c93
commit 45dc7fbac8

View file

@ -5,6 +5,11 @@
logs::channel cellHttp("cellHttp");
s32 cellHttpAuthCacheExport()
{
UNIMPLEMENTED_FUNC(cellHttp);
return CELL_OK;
}
s32 cellHttpAuthCacheFlush()
{
@ -12,6 +17,24 @@ s32 cellHttpAuthCacheFlush()
return CELL_OK;
}
s32 cellHttpAuthCacheGetEntryMax()
{
UNIMPLEMENTED_FUNC(cellHttp);
return CELL_OK;
}
s32 cellHttpAuthCacheImport()
{
UNIMPLEMENTED_FUNC(cellHttp);
return CELL_OK;
}
s32 cellHttpAuthCacheSetEntryMax()
{
UNIMPLEMENTED_FUNC(cellHttp);
return CELL_OK;
}
s32 cellHttpInit()
{
UNIMPLEMENTED_FUNC(cellHttp);
@ -638,7 +661,11 @@ s32 cellHttpClientSetSslIdDestroyCallback()
DECLARE(ppu_module_manager::cellHttp)("cellHttp", []()
{
REG_FUNC(cellHttp, cellHttpAuthCacheExport);
REG_FUNC(cellHttp, cellHttpAuthCacheFlush);
REG_FUNC(cellHttp, cellHttpAuthCacheGetEntryMax);
REG_FUNC(cellHttp, cellHttpAuthCacheImport);
REG_FUNC(cellHttp, cellHttpAuthCacheSetEntryMax);
REG_FUNC(cellHttp, cellHttpInit);
REG_FUNC(cellHttp, cellHttpEnd);
REG_FUNC(cellHttp, cellHttpsInit);