summaryrefslogtreecommitdiff
path: root/ace/SOCK_Acceptor.cpp
diff options
context:
space:
mode:
authornw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-09-26 10:16:29 +0000
committernw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-09-26 10:16:29 +0000
commit67e33864f7e19aac46a7d3058190a8001183d917 (patch)
treeb49ceb21af149a225cb00698bd12881228b993b8 /ace/SOCK_Acceptor.cpp
parentb881bebec7495dccfa976193df86709cb36b9467 (diff)
downloadATCD-67e33864f7e19aac46a7d3058190a8001183d917.tar.gz
Can't uncouple event with accepted socket yet. Don't ask me why!!
Diffstat (limited to 'ace/SOCK_Acceptor.cpp')
-rw-r--r--ace/SOCK_Acceptor.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/ace/SOCK_Acceptor.cpp b/ace/SOCK_Acceptor.cpp
index a6bdfb64fb8..85322f5513c 100644
--- a/ace/SOCK_Acceptor.cpp
+++ b/ace/SOCK_Acceptor.cpp
@@ -113,12 +113,14 @@ ACE_SOCK_Acceptor::shared_accept (ACE_Addr *remote_addr,
new_handle = ACE_OS::accept (this->get_handle (), addr, len_ptr);
while (new_handle == ACE_INVALID_HANDLE && restart && errno == EINTR);
+#if 0
#if defined (ACE_HAS_WINSOCK2) && (ACE_HAS_WINSOCK2 != 0)
// Reset the event association inherited by the new handle
::WSAEventSelect ((SOCKET) new_handle,
NULL,
0);
#endif /* ACE_WIN32 */
+#endif /* 0 */
// Reset the size of the addr (really only necessary for the
// UNIX domain sockets).