mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-22 10:04:39 +00:00
Stub sceHttpsGetCaList
This commit is contained in:
parent
c592b57a81
commit
a2855c4f36
@ -492,8 +492,9 @@ int PS4_SYSV_ABI sceHttpsFreeCaList() {
|
|||||||
return ORBIS_OK;
|
return ORBIS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
int PS4_SYSV_ABI sceHttpsGetCaList() {
|
int PS4_SYSV_ABI sceHttpsGetCaList(int httpCtxId, OrbisHttpsCaList* list) {
|
||||||
LOG_ERROR(Lib_Http, "(STUBBED) called");
|
LOG_ERROR(Lib_Http, "(DUMMY) called, httpCtxId = {}", httpCtxId);
|
||||||
|
list->certsNum = 0;
|
||||||
return ORBIS_OK;
|
return ORBIS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "common/types.h"
|
#include "common/types.h"
|
||||||
|
#include "core/libraries/network/ssl.h"
|
||||||
|
|
||||||
namespace Core::Loader {
|
namespace Core::Loader {
|
||||||
class SymbolsResolver;
|
class SymbolsResolver;
|
||||||
@ -24,6 +25,8 @@ struct OrbisHttpUriElement {
|
|||||||
u8 reserved[10];
|
u8 reserved[10];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
using OrbisHttpsCaList = Libraries::Ssl::OrbisSslCaList;
|
||||||
|
|
||||||
int PS4_SYSV_ABI sceHttpAbortRequest();
|
int PS4_SYSV_ABI sceHttpAbortRequest();
|
||||||
int PS4_SYSV_ABI sceHttpAbortRequestForce();
|
int PS4_SYSV_ABI sceHttpAbortRequestForce();
|
||||||
int PS4_SYSV_ABI sceHttpAbortWaitRequest();
|
int PS4_SYSV_ABI sceHttpAbortWaitRequest();
|
||||||
@ -120,7 +123,7 @@ int PS4_SYSV_ABI sceHttpSetResponseHeaderMaxSize();
|
|||||||
int PS4_SYSV_ABI sceHttpSetSendTimeOut();
|
int PS4_SYSV_ABI sceHttpSetSendTimeOut();
|
||||||
int PS4_SYSV_ABI sceHttpSetSocketCreationCallback();
|
int PS4_SYSV_ABI sceHttpSetSocketCreationCallback();
|
||||||
int PS4_SYSV_ABI sceHttpsFreeCaList();
|
int PS4_SYSV_ABI sceHttpsFreeCaList();
|
||||||
int PS4_SYSV_ABI sceHttpsGetCaList();
|
int PS4_SYSV_ABI sceHttpsGetCaList(int httpCtxId, OrbisHttpsCaList* list);
|
||||||
int PS4_SYSV_ABI sceHttpsGetSslError();
|
int PS4_SYSV_ABI sceHttpsGetSslError();
|
||||||
int PS4_SYSV_ABI sceHttpsLoadCert();
|
int PS4_SYSV_ABI sceHttpsLoadCert();
|
||||||
int PS4_SYSV_ABI sceHttpsSetMinSslVersion();
|
int PS4_SYSV_ABI sceHttpsSetMinSslVersion();
|
||||||
|
@ -13,6 +13,11 @@ namespace Libraries::Ssl {
|
|||||||
|
|
||||||
struct OrbisSslCaCerts;
|
struct OrbisSslCaCerts;
|
||||||
|
|
||||||
|
struct OrbisSslCaList {
|
||||||
|
void* certs;
|
||||||
|
int certsNum;
|
||||||
|
};
|
||||||
|
|
||||||
int PS4_SYSV_ABI CA_MGMT_allocCertDistinguishedName();
|
int PS4_SYSV_ABI CA_MGMT_allocCertDistinguishedName();
|
||||||
int PS4_SYSV_ABI CA_MGMT_certDistinguishedNameCompare();
|
int PS4_SYSV_ABI CA_MGMT_certDistinguishedNameCompare();
|
||||||
int PS4_SYSV_ABI CA_MGMT_convertKeyBlobToPKCS8Key();
|
int PS4_SYSV_ABI CA_MGMT_convertKeyBlobToPKCS8Key();
|
||||||
|
Loading…
Reference in New Issue
Block a user