2018-10-17 17:15:50 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
2019-09-19 00:45:11 +00:00
|
|
|
using Ryujinx.HLE.HOS.Services.Ssl.SslService;
|
2018-02-28 03:31:52 +00:00
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ssl
|
2018-02-28 03:31:52 +00:00
|
|
|
{
|
2019-07-10 15:59:54 +00:00
|
|
|
[Service("ssl")]
|
2018-04-06 04:01:52 +00:00
|
|
|
class ISslService : IpcService
|
2018-02-28 03:31:52 +00:00
|
|
|
{
|
2019-07-12 01:13:43 +00:00
|
|
|
public ISslService(ServiceCtx context) { }
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(0)]
|
2018-10-06 22:16:42 +00:00
|
|
|
// CreateContext(nn::ssl::sf::SslVersion, u64, pid) -> object<nn::ssl::sf::ISslContext>
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode CreateContext(ServiceCtx context)
|
2018-10-06 22:16:42 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
int sslVersion = context.RequestData.ReadInt32();
|
|
|
|
long unknown = context.RequestData.ReadInt64();
|
2018-10-06 22:16:42 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceSsl, new { sslVersion, unknown });
|
2018-10-06 22:16:42 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
MakeObject(context, new ISslContext());
|
2018-10-06 22:16:42 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-10-06 22:16:42 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(5)]
|
2018-10-06 22:16:42 +00:00
|
|
|
// SetInterfaceVersion(u32)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode SetInterfaceVersion(ServiceCtx context)
|
2018-06-02 22:46:09 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
int version = context.RequestData.ReadInt32();
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceSsl, new { version });
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-06-02 22:46:09 +00:00
|
|
|
}
|
2018-02-28 03:31:52 +00:00
|
|
|
}
|
|
|
|
}
|