diff options
author | Oleksiy Vyalov <ovyalov@google.com> | 2015-08-20 23:09:34 +0000 |
---|---|---|
committer | Oleksiy Vyalov <ovyalov@google.com> | 2015-08-20 23:09:34 +0000 |
commit | 549718563d09e1893139af80bb85f7fb18a294b9 (patch) | |
tree | 5abb8a2191777a747bf16017665f17a9c967a674 /lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h | |
parent | 2df38cd0c4ac4f0661c259f5c3225b4358ada126 (diff) | |
download | bcm5719-llvm-549718563d09e1893139af80bb85f7fb18a294b9.tar.gz bcm5719-llvm-549718563d09e1893139af80bb85f7fb18a294b9.zip |
Make UriParser to support [$HOSTNAME] notation.
http://reviews.llvm.org/D12025
llvm-svn: 245639
Diffstat (limited to 'lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h')
-rw-r--r-- | lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h b/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h index 0bf013fdfb6..1917c2648f1 100644 --- a/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h +++ b/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h @@ -234,7 +234,17 @@ protected: virtual bool KillSpawnedProcess (lldb::pid_t pid); + virtual std::string + MakeServerUrl(const char* scheme, + const char* hostname, + uint16_t port); + private: + std::string + MakeGdbServerUrl(const std::string &platform_scheme, + const std::string &platform_hostname, + uint16_t port); + DISALLOW_COPY_AND_ASSIGN (PlatformRemoteGDBServer); }; |