From e551051a58f2188ccafd28ad47b5092875cc72e8 Mon Sep 17 00:00:00 2001 From: Oleksiy Vyalov Date: Wed, 3 Feb 2016 22:02:43 +0000 Subject: [PATCH] Pass socket scheme as part of debug server listen URL. http://reviews.llvm.org/D16861 llvm-svn: 259714 --- .../Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp index f88ac12..060d795 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp @@ -135,6 +135,7 @@ GDBRemoteCommunicationServerPlatform::LaunchGDBServer(const lldb_private::Args& assert(ok); std::ostringstream url; + url << m_socket_scheme << "://"; uint16_t* port_ptr = &port; if (m_socket_protocol == Socket::ProtocolTcp) url << platform_ip << ":" << port; -- 2.7.4