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;
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;
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits