mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-03-24 19:38:32 -06:00
Stub some cellHttpAuth* functions
This commit is contained in:
parent
72590e2c93
commit
45dc7fbac8
@ -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);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user