mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-19 18:04:56 +00:00
some dummy net functions
This commit is contained in:
parent
37813c1f59
commit
8e8a82a310
7 changed files with 17 additions and 13 deletions
|
@ -258,9 +258,11 @@ int PS4_SYSV_ABI sceHttpGetStatusCode() {
|
|||
return ORBIS_OK;
|
||||
}
|
||||
|
||||
int PS4_SYSV_ABI sceHttpInit() {
|
||||
LOG_ERROR(Lib_Http, "(STUBBED) called");
|
||||
return ORBIS_OK;
|
||||
int PS4_SYSV_ABI sceHttpInit(int libnetMemId, int libsslCtxId, std::size_t poolSize) {
|
||||
LOG_ERROR(Lib_Http, "(DUMMY) called libnetMemId = {} libsslCtxId = {} poolSize = {}",libnetMemId,libsslCtxId,poolSize);
|
||||
// return a value >1
|
||||
static int id = 0;
|
||||
return ++id;
|
||||
}
|
||||
|
||||
int PS4_SYSV_ABI sceHttpParseResponseHeader() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue