using Ryujinx.Common.Logging; namespace Ryujinx.HLE.HOS.Services.Ldn.Lp2p { class ISfService : IpcService { public ISfService(ServiceCtx context) { } [CommandCmif(0)] // Initialize() public ResultCode Initialize(ServiceCtx context) { context.ResponseData.Write(0); return ResultCode.Success; } [CommandCmif(768)] // CreateGroup(buffer) public ResultCode SendToOtherGroup(ServiceCtx context) { Logger.Stub?.PrintStub(LogClass.ServiceLdn); return ResultCode.Success; } [CommandCmif(1544)] // RecvFromOtherGroup(u32, buffer) -> (nn::lp2p::MacAddress, u16, s16, u32, s32) public ResultCode RecvFromOtherGroup(ServiceCtx context) { Logger.Stub?.PrintStub(LogClass.ServiceLdn); return ResultCode.Success; } } }