mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 08:48:42 +00:00
560ccbeb2d
* Refactoring commands handling - Use Reflection to handle commands ID. - Add all symbols (from SwIPC so not all time accurate). - Re-sort some services commands methods. - Some cleanup. - Keep some empty constructor for consistency. * Fix order in IProfile
35 lines
956 B
C#
35 lines
956 B
C#
using Ryujinx.Common.Logging;
|
|
|
|
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 long 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 0;
|
|
}
|
|
|
|
[Command(5)]
|
|
// SetInterfaceVersion(u32)
|
|
public long SetInterfaceVersion(ServiceCtx context)
|
|
{
|
|
int version = context.RequestData.ReadInt32();
|
|
|
|
Logger.PrintStub(LogClass.ServiceSsl, new { version });
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
} |