summaryrefslogtreecommitdiff
path: root/examples/ASX/Event_Server
diff options
context:
space:
mode:
authornw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-10 03:34:01 +0000
committernw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-10 03:34:01 +0000
commit90a7d11d50876a724c38f60d914b9e1f7328922f (patch)
tree7f4ec3d02ff28ab097fa8a251d2aba34516229e5 /examples/ASX/Event_Server
parentd3749fcd1401e2cc2bfa6854b2061456def2713e (diff)
downloadATCD-90a7d11d50876a724c38f60d914b9e1f7328922f.tar.gz
Removed code to reset non-blocking flag of peer handle. This has been taken
care of by ACE_Acceptor::activate_svc_handler.
Diffstat (limited to 'examples/ASX/Event_Server')
-rw-r--r--examples/ASX/Event_Server/Event_Server/Peer_Router.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/ASX/Event_Server/Event_Server/Peer_Router.cpp b/examples/ASX/Event_Server/Event_Server/Peer_Router.cpp
index 21444a5c3bc..a40948d988e 100644
--- a/examples/ASX/Event_Server/Event_Server/Peer_Router.cpp
+++ b/examples/ASX/Event_Server/Event_Server/Peer_Router.cpp
@@ -252,9 +252,6 @@ Peer_Handler::open (void *)
else if (this->prc_->bind_peer (this->get_handle (), this) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "bind_peer"), -1);
- // Turn off non-blocking I/O in case it was turned on.
- else if (this->peer ().disable (ACE_NONBLOCK) == -1)
- ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "disable non-blocking I/O"), -1);
else
return 0;
}