[Lldb-commits] [lldb] [lldb-dap] Refactoring lldb-dap port listening mode to allow multiple connections. (PR #116392)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 27 07:17:59 PST 2024
================
@@ -118,6 +124,15 @@ std::string TCPSocket::GetRemoteConnectionURI() const {
return "";
}
+std::string TCPSocket::GetListeningConnectionURI() const {
----------------
labath wrote:
Let's put these into a separate patch (with a test case). I also believe these should return a `vector<string>` as the listening socket can have more than one address. You can ignore the additional addresses in the caller if you don't need them.
https://github.com/llvm/llvm-project/pull/116392
More information about the lldb-commits
mailing list