1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-21 22:44:36 +01:00
Ryujinx/Ryujinx.HLE/HOS/Services/Ssl/ISslService.cs

35 lines
956 B
C#
Raw Normal View History

using Ryujinx.Common.Logging;
namespace Ryujinx.HLE.HOS.Services.Ssl
{
[Service("ssl")]
class ISslService : IpcService
{
public ISslService(ServiceCtx context) { }
[Command(0)]
// CreateContext(nn::ssl::sf::SslVersion, u64, pid) -> object<nn::ssl::sf::ISslContext>
public long CreateContext(ServiceCtx context)
{
int sslVersion = context.RequestData.ReadInt32();
long unknown = context.RequestData.ReadInt64();
Logger.PrintStub(LogClass.ServiceSsl, new { sslVersion, unknown });
MakeObject(context, new ISslContext());
return 0;
}
[Command(5)]
// SetInterfaceVersion(u32)
public long SetInterfaceVersion(ServiceCtx context)
{
int version = context.RequestData.ReadInt32();
Logger.PrintStub(LogClass.ServiceSsl, new { version });
return 0;
}
}
}