aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliamWsyHK <WilliamWsyHK@users.noreply.github.com>2022-10-19 09:27:11 +0800
committerGitHub <noreply@github.com>2022-10-19 01:27:11 +0000
commit56621615b1ca52822141862d660a661054fd6694 (patch)
treeee09bb78e1099807f79cd4ad3fdbb3c2180f6022
parent2099a3e84b8e01138ebb32b305eea01359e7b4ed (diff)
Implement the GetSessionCacheMode in SSL servuce (#3735)1.1.318
-rw-r--r--Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslConnection.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslConnection.cs b/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslConnection.cs
index ff658673..726ee122 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslConnection.cs
+++ b/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslConnection.cs
@@ -349,7 +349,11 @@ namespace Ryujinx.HLE.HOS.Services.Ssl.SslService
// GetSessionCacheMode() -> nn::ssl::sf::SessionCacheMode
public ResultCode GetSessionCacheMode(ServiceCtx context)
{
- throw new ServiceNotImplementedException(this, context);
+ context.ResponseData.Write((uint)_sessionCacheMode);
+
+ Logger.Stub?.PrintStub(LogClass.ServiceSsl, new { _sessionCacheMode });
+
+ return ResultCode.Success;
}
[CommandHipc(19)]