[Lldb-commits] [lldb] r259714 - Pass socket scheme as part of debug server listen URL.
Oleksiy Vyalov via lldb-commits
lldb-commits at lists.llvm.org
Wed Feb 3 14:02:43 PST 2016
Author: ovyalov
Date: Wed Feb 3 16:02:43 2016
New Revision: 259714
URL: http://llvm.org/viewvc/llvm-project?rev=259714&view=rev
Log:
Pass socket scheme as part of debug server listen URL.
http://reviews.llvm.org/D16861
Modified:
lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
Modified: lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp?rev=259714&r1=259713&r2=259714&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp Wed Feb 3 16:02:43 2016
@@ -135,6 +135,7 @@ GDBRemoteCommunicationServerPlatform::La
assert(ok);
std::ostringstream url;
+ url << m_socket_scheme << "://";
uint16_t* port_ptr = &port;
if (m_socket_protocol == Socket::ProtocolTcp)
url << platform_ip << ":" << port;
More information about the lldb-commits
mailing list