This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from d6cc6f8ca Update lldb to match clang r301442. new e82f6c4f5 Re-landing IPv6 support for LLDB Host
The 1 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 | 9 +- include/lldb/Host/Config.h | 4 + include/lldb/Host/Config.h.cmake | 4 + include/lldb/Host/MainLoop.h | 95 +++++++- 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} | 144 +++++++++--- source/Host/common/Socket.cpp | 38 ++-- source/Host/common/SocketAddress.cpp | 3 +- source/Host/common/TCPSocket.cpp | 250 ++++++++++++--------- 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 | 246 ++++++++++---------- 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 | 31 ++- 29 files changed, 680 insertions(+), 487 deletions(-) delete mode 100644 include/lldb/Host/posix/MainLoopPosix.h rename source/Host/{posix/MainLoopPosix.cpp => common/MainLoop.cpp} (59%)