summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleksiy Vyalov <ovyalov@google.com>2016-02-03 22:02:43 +0000
committerOleksiy Vyalov <ovyalov@google.com>2016-02-03 22:02:43 +0000
commite551051a58f2188ccafd28ad47b5092875cc72e8 (patch)
tree36b06666971ecd1dde27a923e5a7e831387237b1
parent0d4ecb6ff57e229bd27067c5214aedb927345d94 (diff)
downloadbcm5719-llvm-e551051a58f2188ccafd28ad47b5092875cc72e8.tar.gz
bcm5719-llvm-e551051a58f2188ccafd28ad47b5092875cc72e8.zip
Pass socket scheme as part of debug server listen URL.
http://reviews.llvm.org/D16861 llvm-svn: 259714
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
index f88ac124752..060d795ffc9 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;
OpenPOWER on IntegriCloud