summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ldn/ldn.cpp
diff options
context:
space:
mode:
authorNguyen Dac Nam <nam.kazt.91@gmail.com>2020-02-16 07:24:34 +0100
committerGitHub <noreply@github.com>2020-02-16 07:24:34 +0100
commit5257a83ebe837fdbe04dbe39927cac99aabca745 (patch)
treeed4769e6ffccd64ed25397f423e1436092bac689 /src/core/hle/service/ldn/ldn.cpp
parentHLE: correct function name of IUserLocalCommunicationService (diff)
downloadyuzu-5257a83ebe837fdbe04dbe39927cac99aabca745.tar
yuzu-5257a83ebe837fdbe04dbe39927cac99aabca745.tar.gz
yuzu-5257a83ebe837fdbe04dbe39927cac99aabca745.tar.bz2
yuzu-5257a83ebe837fdbe04dbe39927cac99aabca745.tar.lz
yuzu-5257a83ebe837fdbe04dbe39927cac99aabca745.tar.xz
yuzu-5257a83ebe837fdbe04dbe39927cac99aabca745.tar.zst
yuzu-5257a83ebe837fdbe04dbe39927cac99aabca745.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ldn/ldn.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/core/hle/service/ldn/ldn.cpp b/src/core/hle/service/ldn/ldn.cpp
index 15aa12645..92adde6d4 100644
--- a/src/core/hle/service/ldn/ldn.cpp
+++ b/src/core/hle/service/ldn/ldn.cpp
@@ -129,12 +129,20 @@ public:
{304, nullptr, "Disconnect"},
{400, nullptr, "Initialize"},
{401, nullptr, "Finalize"},
- {402, nullptr, "Initialize2"},
+ {402, &IUserLocalCommunicationService::Initialize2, "Initialize2"}, // 7.0.0+
};
// clang-format on
RegisterHandlers(functions);
}
+
+ void Initialize2(Kernel::HLERequestContext& ctx) {
+ LOG_WARNING(Service_LDN, "(STUBBED) called");
+ // Result success seem make this services start network and continue.
+ // If we just pass result error then it will stop and maybe try again and again.
+ IPC::ResponseBuilder rb{ctx, 2};
+ rb.Push(RESULT_UNKNOWN);
+ }
};
class LDNS final : public ServiceFramework<LDNS> {