summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-06-12 17:50:50 +0200
committerLiam <byteslice@airmail.cc>2022-06-12 17:50:50 +0200
commitfb4b507ba4bd7c817ce680400caae88456888070 (patch)
treec7a51f6a7fb49e9d98df2dc8ba5ae27a0e3a97c0
parentMerge pull request #8450 from lioncash/undef (diff)
downloadyuzu-fb4b507ba4bd7c817ce680400caae88456888070.tar
yuzu-fb4b507ba4bd7c817ce680400caae88456888070.tar.gz
yuzu-fb4b507ba4bd7c817ce680400caae88456888070.tar.bz2
yuzu-fb4b507ba4bd7c817ce680400caae88456888070.tar.lz
yuzu-fb4b507ba4bd7c817ce680400caae88456888070.tar.xz
yuzu-fb4b507ba4bd7c817ce680400caae88456888070.tar.zst
yuzu-fb4b507ba4bd7c817ce680400caae88456888070.zip
-rw-r--r--src/core/debugger/debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/debugger/debugger.cpp b/src/core/debugger/debugger.cpp
index 8d64990ed..7774ffdef 100644
--- a/src/core/debugger/debugger.cpp
+++ b/src/core/debugger/debugger.cpp
@@ -96,7 +96,7 @@ private:
connection_thread = std::jthread([&, port](std::stop_token stop_token) {
try {
// Initialize the listening socket and accept a new client.
- tcp::endpoint endpoint{boost::asio::ip::address_v4::loopback(), port};
+ tcp::endpoint endpoint{boost::asio::ip::address_v4::any(), port};
tcp::acceptor acceptor{io_context, endpoint};
acceptor.async_accept(client_socket, [](const auto&) {});