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
|
// GetSessionCacheMode() -> nn::ssl::sf::SessionCacheMode
|
||||||
public ResultCode GetSessionCacheMode(ServiceCtx context)
|
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)]
|
[CommandHipc(19)]
|
||||||
|
|
Reference in a new issue