This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 0a0837e01 Add back code to implement "frame var -a,-l,-g" filters. new 8599b79de Update LLDB Host to support IPv6 over TCP new ff0b4c201 Update DebugServer to support IPv6 over TCP
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: cmake/modules/LLDBConfig.cmake | 1 + include/lldb/Host/Config.h | 2 + include/lldb/Host/Config.h.cmake | 2 + include/lldb/Host/MainLoop.h | 90 +++++++- include/lldb/Host/Socket.h | 7 +- include/lldb/Host/common/TCPSocket.h | 22 +- include/lldb/Host/common/UDPSocket.h | 9 +- include/lldb/Host/linux/AbstractSocket.h | 2 +- include/lldb/Host/posix/DomainSocket.h | 10 +- include/lldb/Host/posix/MainLoopPosix.h | 104 --------- lldb.xcodeproj/project.pbxproj | 8 +- source/Host/CMakeLists.txt | 2 +- .../MainLoopPosix.cpp => common/MainLoop.cpp} | 124 +++++++++-- source/Host/common/Socket.cpp | 35 +-- source/Host/common/TCPSocket.cpp | 248 ++++++++++++--------- source/Host/common/UDPSocket.cpp | 84 ++++--- source/Host/linux/AbstractSocket.cpp | 4 +- .../Host/posix/ConnectionFileDescriptorPosix.cpp | 4 +- source/Host/posix/DomainSocket.cpp | 35 +-- .../Android/PlatformAndroidRemoteGDBServer.cpp | 2 +- .../debugserver.xcodeproj/project.pbxproj | 4 + tools/debugserver/source/CMakeLists.txt | 1 + tools/debugserver/source/RNBSocket.cpp | 245 ++++++++++---------- tools/debugserver/source/debugserver.cpp | 16 +- tools/lldb-server/Acceptor.cpp | 3 +- unittests/Host/SocketTest.cpp | 21 +- .../Process/gdb-remote/GDBRemoteTestUtils.cpp | 5 +- unittests/debugserver/RNBSocketTest.cpp | 29 ++- 28 files changed, 638 insertions(+), 481 deletions(-) delete mode 100644 include/lldb/Host/posix/MainLoopPosix.h rename source/Host/{posix/MainLoopPosix.cpp => common/MainLoop.cpp} (61%)