[Lldb-commits] [PATCH] D79757: Use IPv4 for Android connections
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed May 20 02:40:44 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rGa9d7b458c094: Use IPv4 for Android connections (authored by emrekultursay, committed by labath).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D79757/new/
https://reviews.llvm.org/D79757
Files:
lldb/source/Plugins/Platform/Android/AdbClient.cpp
lldb/source/Plugins/Platform/Android/PlatformAndroidRemoteGDBServer.cpp
Index: lldb/source/Plugins/Platform/Android/PlatformAndroidRemoteGDBServer.cpp
===================================================================
--- lldb/source/Plugins/Platform/Android/PlatformAndroidRemoteGDBServer.cpp
+++ lldb/source/Plugins/Platform/Android/PlatformAndroidRemoteGDBServer.cpp
@@ -188,7 +188,7 @@
if (error.Success()) {
m_port_forwards[pid] = local_port;
std::ostringstream url_str;
- url_str << "connect://localhost:" << local_port;
+ url_str << "connect://127.0.0.1:" << local_port;
connect_url = url_str.str();
break;
}
Index: lldb/source/Plugins/Platform/Android/AdbClient.cpp
===================================================================
--- lldb/source/Plugins/Platform/Android/AdbClient.cpp
+++ lldb/source/Plugins/Platform/Android/AdbClient.cpp
@@ -141,7 +141,7 @@
if (const char *env_port = std::getenv("ANDROID_ADB_SERVER_PORT")) {
port = env_port;
}
- std::string uri = "connect://localhost:" + port;
+ std::string uri = "connect://127.0.0.1:" + port;
m_conn->Connect(uri.c_str(), &error);
return error;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D79757.265184.patch
Type: text/x-patch
Size: 1112 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200520/54fd4673/attachment.bin>
More information about the lldb-commits
mailing list