mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 12:05:23 +00:00
Stub some cellHttpAuth* functions
This commit is contained in:
parent
72590e2c93
commit
45dc7fbac8
1 changed files with 27 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue