diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-06-16 20:15:25 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-06-16 20:15:25 +0000 |
commit | 99bb6fb665611ddd98a71c75d9f33bfd0c1d7c9b (patch) | |
tree | 9d6733547f5f42ea89ded14110c3d1ae1e61d484 /TAO/tao/UIOP_Connect.cpp | |
parent | 135a5704b855f6be64fb62c4dee40cd566348df2 (diff) | |
download | ATCD-99bb6fb665611ddd98a71c75d9f33bfd0c1d7c9b.tar.gz |
ChangeLogTag:Fri Jun 16 12:07:39 2000 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'TAO/tao/UIOP_Connect.cpp')
-rw-r--r-- | TAO/tao/UIOP_Connect.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/TAO/tao/UIOP_Connect.cpp b/TAO/tao/UIOP_Connect.cpp index 1b92cb113a7..1a1a05d8912 100644 --- a/TAO/tao/UIOP_Connect.cpp +++ b/TAO/tao/UIOP_Connect.cpp @@ -430,8 +430,10 @@ TAO_UIOP_Client_Connection_Handler::close (u_long /* flags */) int TAO_UIOP_Client_Connection_Handler::handle_input (ACE_HANDLE) { - // Call the waiter to handle the input. - return this->transport ()->wait_strategy ()->handle_input (); + int r = this->transport ()->handle_client_input (); + if (r == -1) + return -1; + return 0; } int |