From 7b399493d62ceee52cc7d8f5ade3d2816919f204 Mon Sep 17 00:00:00 2001 From: Isaac Marovitz Date: Wed, 28 Feb 2024 18:21:33 -0500 Subject: [PATCH] Stub GetNameInfoRequestWithOptions --- .../HOS/Services/Sockets/Sfdnsres/IResolver.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/IResolver.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/IResolver.cs index 39af90383..f83e47878 100644 --- a/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/IResolver.cs +++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/IResolver.cs @@ -244,6 +244,14 @@ namespace Ryujinx.HLE.HOS.Services.Sockets.Sfdnsres return GetAddrInfoRequestImpl(context, outputBufferPosition, outputBufferSize, true, optionsBufferPosition, optionsBufferSize); } + [CommandCmif(13)] + public ResultCode GetNameInfoRequestWithOptions(ServiceCtx context) + { + Logger.Stub?.PrintStub(LogClass.ServiceSfdnsres); + + return ResultCode.Success; + } + [CommandCmif(14)] // 5.0.0+ // ResolverSetOptionRequest(buffer, u64 unknown, u64 pid_placeholder, pid) -> (i32 ret, u32 bsd_errno) public ResultCode ResolverSetOptionRequest(ServiceCtx context)