4ef689c67d
* Stubbed ImportServerPki * thought it might be nice to name this variable properly * i really need to name variables better * Change Var Co-authored-by: Thog <thog@protonmail.com> * Change .ReadBytes(5) to IPC send buffer Co-authored-by: Thog <thog@protonmail.com> * Add description comment Co-authored-by: Thog <thog@protonmail.com> * fix build issue * Resolve final suggestion Co-authored-by: Thog <thog@protonmail.com> * uhh * it should work now shut up * aligned variables just look so much nicer :) * better variable alignment * aligned Co-authored-by: Thog <thog@protonmail.com>
36 lines
No EOL
1 KiB
C#
36 lines
No EOL
1 KiB
C#
using Ryujinx.Common.Logging;
|
|
using Ryujinx.HLE.HOS.Services.Ssl.SslService;
|
|
|
|
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 ResultCode CreateContext(ServiceCtx context)
|
|
{
|
|
int sslVersion = context.RequestData.ReadInt32();
|
|
long unknown = context.RequestData.ReadInt64();
|
|
|
|
Logger.PrintStub(LogClass.ServiceSsl, new { sslVersion, unknown });
|
|
|
|
MakeObject(context, new ISslContext(context));
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(5)]
|
|
// SetInterfaceVersion(u32)
|
|
public ResultCode SetInterfaceVersion(ServiceCtx context)
|
|
{
|
|
int version = context.RequestData.ReadInt32();
|
|
|
|
Logger.PrintStub(LogClass.ServiceSsl, new { version });
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |