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