2018-06-02 15:46:09 -07:00
|
|
|
using Ryujinx.Core.Logging;
|
2018-02-27 19:31:52 -08:00
|
|
|
using Ryujinx.Core.OsHle.Ipc;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-03-20 13:00:00 -07:00
|
|
|
namespace Ryujinx.Core.OsHle.Services.Ssl
|
2018-02-27 19:31:52 -08:00
|
|
|
{
|
2018-04-05 21:01:52 -07:00
|
|
|
class ISslService : IpcService
|
2018-02-27 19:31:52 -08:00
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 11:58:46 -07:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-27 19:31:52 -08:00
|
|
|
|
2018-04-05 21:01:52 -07:00
|
|
|
public ISslService()
|
2018-02-27 19:31:52 -08:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-06-02 15:46:09 -07:00
|
|
|
{ 5, SetInterfaceVersion }
|
2018-02-27 19:31:52 -08:00
|
|
|
};
|
|
|
|
}
|
2018-06-02 15:46:09 -07:00
|
|
|
|
|
|
|
public long SetInterfaceVersion(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
int Version = Context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceSsl, "Stubbed.");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-27 19:31:52 -08:00
|
|
|
}
|
|
|
|
}
|