Update cellHttp.cpp

This commit is contained in:
Talkashie 2017-08-13 01:46:23 -05:00 committed by Ivan
parent b44f5e59ac
commit 2c611ec0ba
1 changed files with 7 additions and 0 deletions

View File

@ -65,6 +65,12 @@ s32 cellHttpSetProxy()
return CELL_OK; return CELL_OK;
} }
s32 cellHttpGetCookie()
{
UNIMPLEMENTED_FUNC(cellHttp);
return CELL_OK;
}
s32 cellHttpGetProxy() s32 cellHttpGetProxy()
{ {
UNIMPLEMENTED_FUNC(cellHttp); UNIMPLEMENTED_FUNC(cellHttp);
@ -701,6 +707,7 @@ DECLARE(ppu_module_manager::cellHttp)("cellHttp", []()
REG_FUNC(cellHttp, cellHttpsInit); REG_FUNC(cellHttp, cellHttpsInit);
REG_FUNC(cellHttp, cellHttpsEnd); REG_FUNC(cellHttp, cellHttpsEnd);
REG_FUNC(cellHttp, cellHttpSetProxy); REG_FUNC(cellHttp, cellHttpSetProxy);
REG_FUNC(cellHttp, cellHttpGetCookie);
REG_FUNC(cellHttp, cellHttpGetProxy); REG_FUNC(cellHttp, cellHttpGetProxy);
REG_FUNC(cellHttp, cellHttpInitCookie); REG_FUNC(cellHttp, cellHttpInitCookie);