Implement the GetSessionCacheMode in SSL servuce (#3735)

This commit is contained in:
WilliamWsyHK 2022-10-19 09:27:11 +08:00 committed by Matt Heins
parent fcb466aca7
commit 7dc0c767dd

View file

@ -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)]