mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 22:38:37 +00:00
Stubbing ImportServerPki (#1281)
* Stubbed ImportServerPki * thought it might be nice to name this variable properly * i really need to name variables better * Change Var Co-authored-by: Thog <thog@protonmail.com> * Change .ReadBytes(5) to IPC send buffer Co-authored-by: Thog <thog@protonmail.com> * Add description comment Co-authored-by: Thog <thog@protonmail.com> * fix build issue * Resolve final suggestion Co-authored-by: Thog <thog@protonmail.com> * uhh * it should work now shut up * aligned variables just look so much nicer :) * better variable alignment * aligned Co-authored-by: Thog <thog@protonmail.com>
This commit is contained in:
parent
f8cd072b62
commit
4ef689c67d
|
@ -17,7 +17,7 @@ namespace Ryujinx.HLE.HOS.Services.Ssl
|
|||
|
||||
Logger.PrintStub(LogClass.ServiceSsl, new { sslVersion, unknown });
|
||||
|
||||
MakeObject(context, new ISslContext());
|
||||
MakeObject(context, new ISslContext(context));
|
||||
|
||||
return ResultCode.Success;
|
||||
}
|
||||
|
|
|
@ -1,7 +1,27 @@
|
|||
using Ryujinx.Common.Logging;
|
||||
using System;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Services.Ssl.SslService
|
||||
{
|
||||
class ISslContext : IpcService
|
||||
{
|
||||
public ISslContext() { }
|
||||
public ISslContext(ServiceCtx context) { }
|
||||
|
||||
[Command(4)]
|
||||
// ImportServerPki(nn::ssl::sf::CertificateFormat certificateFormat, buffer<bytes, 5> certificate) -> u64 certificateId
|
||||
public ResultCode ImportServerPki(ServiceCtx context)
|
||||
{
|
||||
int certificateFormat = context.RequestData.ReadInt32();
|
||||
long certificateDataPosition = context.Request.SendBuff[0].Position;
|
||||
long certificateDataSize = context.Request.SendBuff[0].Size;
|
||||
ulong certificateId = 1;
|
||||
|
||||
context.ResponseData.Write(certificateId);
|
||||
|
||||
Logger.PrintStub(LogClass.ServiceSsl, new { certificateFormat, certificateDataPosition, certificateDataSize });
|
||||
|
||||
return ResultCode.Success;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue