summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-06-13 20:38:20 +0200
committerGitHub <noreply@github.com>2022-06-13 20:38:20 +0200
commit7582717c9d1cb0f7426f9f44a05908468daea8b3 (patch)
tree6b8616f9864bf0531e4d1d404b1d69f6a4bf2830 /src
parentMerge pull request #8443 from liamwhite/code-mem (diff)
parentcore/debugger: allow remote connections (diff)
downloadyuzu-7582717c9d1cb0f7426f9f44a05908468daea8b3.tar
yuzu-7582717c9d1cb0f7426f9f44a05908468daea8b3.tar.gz
yuzu-7582717c9d1cb0f7426f9f44a05908468daea8b3.tar.bz2
yuzu-7582717c9d1cb0f7426f9f44a05908468daea8b3.tar.lz
yuzu-7582717c9d1cb0f7426f9f44a05908468daea8b3.tar.xz
yuzu-7582717c9d1cb0f7426f9f44a05908468daea8b3.tar.zst
yuzu-7582717c9d1cb0f7426f9f44a05908468daea8b3.zip
Diffstat (limited to 'src')
-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&) {});