diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2001-05-18 06:05:51 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2001-05-18 06:05:51 +0000 |
commit | 1aafc980a97ffe29a8d7ac33b9a0bc698e5e413d (patch) | |
tree | f9f21a6fbc88f16686f46684f4dade0b2ce3e122 /TAO/tests/Portable_Interceptors | |
parent | 201829aa070edb6fba97a50d069dd3e1b2ce00b7 (diff) | |
download | ATCD-1aafc980a97ffe29a8d7ac33b9a0bc698e5e413d.tar.gz |
ChangeLogTag:Thu May 17 22:29:08 2001 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'TAO/tests/Portable_Interceptors')
-rw-r--r-- | TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_Request_Interceptor.cpp | 12 | ||||
-rw-r--r-- | TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Server_Request_Interceptor.cpp | 12 |
2 files changed, 12 insertions, 12 deletions
diff --git a/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_Request_Interceptor.cpp b/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_Request_Interceptor.cpp index 2e886f90142..9eceac9aa11 100644 --- a/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_Request_Interceptor.cpp +++ b/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Client_Request_Interceptor.cpp @@ -110,6 +110,8 @@ Client_Request_Interceptor::receive_reply ( if (!client_side) return; // Don't continue if the server side is being tested. + this->ending_interception_point_count_++; + ACE_DEBUG ((LM_INFO, "%s.receive_reply", this->name_.in ())); @@ -151,8 +153,6 @@ Client_Request_Interceptor::receive_reply ( ACE_DEBUG ((LM_DEBUG, "\n")); - - this->ending_interception_point_count_++; } void @@ -171,6 +171,8 @@ Client_Request_Interceptor::receive_exception ( if (!client_side) return; // Don't continue if the server side is being tested. + this->ending_interception_point_count_++; + ACE_DEBUG ((LM_INFO, "%s.receive_exception", this->name_.in ())); @@ -236,8 +238,6 @@ Client_Request_Interceptor::receive_exception ( ACE_DEBUG ((LM_DEBUG, "\n")); - - this->ending_interception_point_count_++; } void @@ -256,11 +256,11 @@ Client_Request_Interceptor::receive_other ( if (!client_side) return; // Don't continue if the server side is being tested. + this->ending_interception_point_count_++; + ACE_DEBUG ((LM_INFO, "%s.receive_other\n", this->name_.in ())); - - this->ending_interception_point_count_++; } CORBA::Boolean diff --git a/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Server_Request_Interceptor.cpp b/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Server_Request_Interceptor.cpp index 7f79f1b1571..f26e669aa48 100644 --- a/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Server_Request_Interceptor.cpp +++ b/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/Server_Request_Interceptor.cpp @@ -110,6 +110,8 @@ Server_Request_Interceptor::send_reply ( if (!server_side) return; // Don't continue if the client side is being tested. + this->ending_interception_point_count_++; + ACE_DEBUG ((LM_INFO, "%s.send_reply", this->name_.in ())); @@ -151,8 +153,6 @@ Server_Request_Interceptor::send_reply ( ACE_DEBUG ((LM_DEBUG, "\n")); - - this->ending_interception_point_count_++; } void @@ -171,6 +171,8 @@ Server_Request_Interceptor::send_exception ( if (!server_side) return; // Don't continue if the client side is being tested. + this->ending_interception_point_count_++; + ACE_DEBUG ((LM_INFO, "%s.send_exception", this->name_.in ())); @@ -236,8 +238,6 @@ Server_Request_Interceptor::send_exception ( ACE_DEBUG ((LM_DEBUG, "\n")); - - this->ending_interception_point_count_++; } void @@ -256,11 +256,11 @@ Server_Request_Interceptor::send_other ( if (!server_side) return; // Don't continue if the client side is being tested. + this->ending_interception_point_count_++; + ACE_DEBUG ((LM_INFO, "%s.send_other", this->name_.in ())); - - this->ending_interception_point_count_++; } CORBA::Boolean |