mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 06:11:45 +00:00
Implement the GetSessionCacheMode in SSL servuce (#3735)
This commit is contained in:
parent
2099a3e84b
commit
56621615b1
1 changed files with 5 additions and 1 deletions
|
@ -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)]
|
||||
|
|
Loading…
Reference in a new issue