a0720b5681
* Refactoring HOS folder structure Refactoring HOS folder structure: - Added some subfolders when needed (Following structure decided in private). - Added some `Types` folders when needed. - Little cleanup here and there. - Add services placeholders for every HOS services (close #766 and #753). * Remove Types namespaces
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());
|
|
|
|
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;
|
|
}
|
|
}
|
|
} |