diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-02-17 16:40:01 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-02-17 16:40:01 +0000 |
commit | 85b846e8066528c3c43374e4f98316a3eae7ed07 (patch) | |
tree | 9cec48d47e7e6269ba3a8cc16c5223c832ee3e52 /cppe/src/IceE/IncomingConnectionFactory.cpp | |
parent | Refactored TAO tests. (diff) | |
download | ice-85b846e8066528c3c43374e4f98316a3eae7ed07.tar.bz2 ice-85b846e8066528c3c43374e4f98316a3eae7ed07.tar.xz ice-85b846e8066528c3c43374e4f98316a3eae7ed07.zip |
- Changes to use blocking sockets instead of non-blocking sockets.
- Removed timeout in accept() method.
Diffstat (limited to 'cppe/src/IceE/IncomingConnectionFactory.cpp')
-rw-r--r-- | cppe/src/IceE/IncomingConnectionFactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppe/src/IceE/IncomingConnectionFactory.cpp b/cppe/src/IceE/IncomingConnectionFactory.cpp index e2e400a37d6..2bc094f03be 100644 --- a/cppe/src/IceE/IncomingConnectionFactory.cpp +++ b/cppe/src/IceE/IncomingConnectionFactory.cpp @@ -318,7 +318,7 @@ IceInternal::IncomingConnectionFactory::run() TransceiverPtr transceiver; try { - transceiver = _acceptor->accept(-1); + transceiver = _acceptor->accept(); } catch(const SocketException&) { |