[Lldb-commits] [PATCH] D21088: Don't use SO_REUSEADDR for *client* sockets
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 7 11:43:18 PDT 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL272041: Don't use SO_REUSEADDR for *client* sockets (authored by labath).
Changed prior to commit:
http://reviews.llvm.org/D21088?vs=59916&id=59922#toc
Repository:
rL LLVM
http://reviews.llvm.org/D21088
Files:
lldb/trunk/source/Host/common/TCPSocket.cpp
Index: lldb/trunk/source/Host/common/TCPSocket.cpp
===================================================================
--- lldb/trunk/source/Host/common/TCPSocket.cpp
+++ lldb/trunk/source/Host/common/TCPSocket.cpp
@@ -112,9 +112,6 @@
if (!DecodeHostAndPort (name, host_str, port_str, port, &error))
return error;
- // Enable local address reuse
- SetOptionReuseAddress();
-
struct sockaddr_in sa;
::memset (&sa, 0, sizeof (sa));
sa.sin_family = kDomain;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D21088.59922.patch
Type: text/x-patch
Size: 492 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20160607/f3a168f8/attachment.bin>
More information about the lldb-commits
mailing list