diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-10-25 05:01:17 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-10-25 05:01:17 +0000 |
commit | f0fde05acd9c8c66ead83eeb8adedc6adebdbf1a (patch) | |
tree | d0ab24545f561a9c0c48a78ea2703754eff9ffcf /ace | |
parent | fc5b82f1ad1b95da693caf8ea2869afe3f65862a (diff) | |
download | ATCD-f0fde05acd9c8c66ead83eeb8adedc6adebdbf1a.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace')
-rw-r--r-- | ace/ACE.cpp | 22 | ||||
-rw-r--r-- | ace/SOCK_Acceptor.cpp | 60 |
2 files changed, 54 insertions, 28 deletions
diff --git a/ace/ACE.cpp b/ace/ACE.cpp index 8559d112f38..0916d27b6bb 100644 --- a/ace/ACE.cpp +++ b/ace/ACE.cpp @@ -857,8 +857,8 @@ ACE::enter_recv_timedwait (ACE_HANDLE handle, // done. val = ACE::get_flags (handle); - if (ACE_BIT_ENABLED (val, ACE_NONBLOCK) == 0) - // Set the descriptor into non-blocking mode if it's not + if (ACE_BIT_DISABLED (val, ACE_NONBLOCK)) + // Set the handle into non-blocking mode if it's not // already in it. ACE::set_flags (handle, ACE_NONBLOCK); return 1; @@ -876,7 +876,7 @@ ACE::leave_recv_timedwait (ACE_HANDLE handle, int val) { if (timeout != 0 - && ACE_BIT_ENABLED (val, ACE_NONBLOCK) == 0) + && ACE_BIT_DISABLED (val, ACE_NONBLOCK)) { // We need to stash errno here because ACE::clr_flags() may // reset it. @@ -904,7 +904,7 @@ ACE::enter_send_timedwait (ACE_HANDLE handle, handle_set.set_bit (handle); // On timed writes we always go into select(); only if the - // descriptor is available for writing within the specified amount + // handle is available for writing within the specified amount // of time do we put it in non-blocking mode switch (ACE_OS::select (int (handle) + 1, @@ -919,8 +919,8 @@ ACE::enter_send_timedwait (ACE_HANDLE handle, // done. val = ACE::get_flags (handle); - if (ACE_BIT_ENABLED (val, ACE_NONBLOCK) == 0) - // Set the descriptor into non-blocking mode if it's not + if (ACE_BIT_DISABLED (val, ACE_NONBLOCK)) + // Set the handle into non-blocking mode if it's not // already in it. ACE::set_flags (handle, ACE_NONBLOCK); return 1; @@ -938,7 +938,7 @@ ACE::leave_send_timedwait (ACE_HANDLE handle, int val) { if (timeout != 0 - && ACE_BIT_ENABLED (val, ACE_NONBLOCK) == 0) + && ACE_BIT_DISABLED (val, ACE_NONBLOCK)) { // We need to stash errno here because ACE::clr_flags() may // reset it. @@ -1892,7 +1892,7 @@ ACE::sock_error (int error) return "address family not supported"; /* NOTREACHED */ case WSAEMFILE: - return "no file descriptors available"; + return "no file handles available"; /* NOTREACHED */ case WSAENOBUFS: return "no buffer space available"; @@ -1907,7 +1907,7 @@ ACE::sock_error (int error) return "socket type not supported for address family"; /* NOTREACHED */ case WSAENOTSOCK: - return "descriptor is not a socket"; + return "handle is not a socket"; /* NOTREACHED */ case WSAEWOULDBLOCK: return "socket marked as non-blocking and SO_LINGER set not 0"; @@ -2032,7 +2032,7 @@ ACE::get_bcast_addr (ACE_UINT32 &bcast_addr, continue; } - if (ACE_BIT_ENABLED (flags.ifr_flags, IFF_UP) == 0) + if (ACE_BIT_DISABLED (flags.ifr_flags, IFF_UP)) { ACE_ERROR ((LM_ERROR, "%p\n", "ACE::get_bcast_addr: Network interface is not up")); @@ -2148,7 +2148,7 @@ ACE::count_interfaces (ACE_HANDLE handle, #endif /* __SVR4 */ } -// Routine to return a descriptor from which ioctl() requests can be +// Routine to return a handle from which ioctl() requests can be // made. ACE_HANDLE diff --git a/ace/SOCK_Acceptor.cpp b/ace/SOCK_Acceptor.cpp index dcf00d7d2bf..3b26fa273d8 100644 --- a/ace/SOCK_Acceptor.cpp +++ b/ace/SOCK_Acceptor.cpp @@ -105,6 +105,7 @@ ACE_SOCK_Acceptor::shared_accept (ACE_Addr *remote_addr, int *len_ptr = 0; int len; ACE_HANDLE new_handle; + ACE_HANDLE handle = this->get_handle (); if (remote_addr != 0) { @@ -114,29 +115,54 @@ ACE_SOCK_Acceptor::shared_accept (ACE_Addr *remote_addr, } // Handle the timeout case. - if (timeout != 0 && ACE::handle_timed_accept (this->get_handle (), timeout, restart) == -1) - return ACE_INVALID_HANDLE; + if (timeout != 0) + { + if (ACE::handle_timed_accept (handle, timeout, restart) == -1) + return ACE_INVALID_HANDLE; + else + { + int val = ACE::get_flags (handle); + + // Set the handle into non-blocking mode if it's not + // already in it. + if (ACE_BIT_DISABLED (val, ACE_NONBLOCK) + && ACE::set_flags (handle, ACE_NONBLOCK) == -1) + return ACE_INVALID_HANDLE; + + new_handle = ACE_OS::accept (handle, addr, len_ptr); + + if (ACE_BIT_DISABLED (val, ACE_NONBLOCK)) + { + // We need to stash errno here because ACE::clr_flags() may + // reset it. + int error = errno; + + // Only disable ACE_NONBLOCK if we weren't in non-blocking mode + // originally. + ACE::clr_flags (handle, ACE_NONBLOCK); + errno = error; + } + } + } else { // Perform a blocking accept. - + do - new_handle = ACE_OS::accept (this->get_handle (), addr, len_ptr); + new_handle = ACE_OS::accept (handle, addr, len_ptr); while (new_handle == ACE_INVALID_HANDLE && restart && errno == EINTR); - + } + #if defined (ACE_HAS_WINSOCK2) && (ACE_HAS_WINSOCK2 != 0) - if (reset_new_handle) - // Reset the event association inherited by the new handle - ::WSAEventSelect ((SOCKET) new_handle, - NULL, - 0); + if (reset_new_handle) + // Reset the event association inherited by the new handle. + ::WSAEventSelect ((SOCKET) new_handle, NULL, 0); #endif /* ACE_WIN32 */ - // Reset the size of the addr (really only necessary for the - // UNIX domain sockets). - if (new_handle != ACE_INVALID_HANDLE && remote_addr != 0) - remote_addr->set_size (*len_ptr); - - return new_handle; - } + // Reset the size of the addr (really only necessary for the + // UNIX domain sockets). + if (new_handle != ACE_INVALID_HANDLE && remote_addr != 0) + remote_addr->set_size (*len_ptr); + + return new_handle; } |