Copy over sceSslInit stub

This commit is contained in:
Stephen 2025-01-11 15:35:28 -06:00
parent d697bf40f8
commit 0f979d7bb1

View File

@ -203,9 +203,11 @@ int PS4_SYSV_ABI sceSslGetSubjectName() {
return ORBIS_OK; return ORBIS_OK;
} }
int PS4_SYSV_ABI sceSslInit() { int PS4_SYSV_ABI sceSslInit(std::size_t poolSize) {
LOG_ERROR(Lib_Ssl, "(STUBBED) called"); LOG_ERROR(Lib_Ssl, "(DUMMY) called poolSize = {}", poolSize);
return ORBIS_OK; // return a value >1
static int id = 0;
return ++id;
} }
int PS4_SYSV_ABI sceSslLoadCert() { int PS4_SYSV_ABI sceSslLoadCert() {