diff options
author | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-07-28 14:48:44 +0000 |
---|---|---|
committer | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-07-28 14:48:44 +0000 |
commit | 5e02d17d38be09f00321a54bbbe1aa19552e6ced (patch) | |
tree | 9819746fcad75fcbeb047a3d80f5e3cc244e310b /TAO/tao | |
parent | 127c18b790ed430a106fc371b39de54f7e1418d6 (diff) | |
download | ATCD-5e02d17d38be09f00321a54bbbe1aa19552e6ced.tar.gz |
ChangeLogTag: Sun Jul 28 09:43:53 2002 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'TAO/tao')
-rw-r--r-- | TAO/tao/IIOP_Transport.cpp | 6 | ||||
-rw-r--r-- | TAO/tao/IIOP_Transport.h | 4 | ||||
-rw-r--r-- | TAO/tao/Strategies/DIOP_Transport.cpp | 6 | ||||
-rw-r--r-- | TAO/tao/Strategies/DIOP_Transport.h | 4 | ||||
-rw-r--r-- | TAO/tao/Strategies/SHMIOP_Transport.cpp | 6 | ||||
-rw-r--r-- | TAO/tao/Strategies/SHMIOP_Transport.h | 4 | ||||
-rw-r--r-- | TAO/tao/Strategies/UIOP_Transport.cpp | 6 | ||||
-rw-r--r-- | TAO/tao/Strategies/UIOP_Transport.h | 4 |
8 files changed, 20 insertions, 20 deletions
diff --git a/TAO/tao/IIOP_Transport.cpp b/TAO/tao/IIOP_Transport.cpp index 2b8adae0107..1e6aa25e237 100644 --- a/TAO/tao/IIOP_Transport.cpp +++ b/TAO/tao/IIOP_Transport.cpp @@ -157,16 +157,16 @@ int TAO_IIOP_Transport::send_request (TAO_Stub *stub, TAO_ORB_Core *orb_core, TAO_OutputCDR &stream, - int two_way, + int message_semantics, ACE_Time_Value *max_wait_time) { if (this->ws_->sending_request (orb_core, - two_way) == -1) + message_semantics) == -1) return -1; if (this->send_message (stream, stub, - two_way, + message_semantics, max_wait_time) == -1) return -1; diff --git a/TAO/tao/IIOP_Transport.h b/TAO/tao/IIOP_Transport.h index d9d3dcfceb2..75b591f72c4 100644 --- a/TAO/tao/IIOP_Transport.h +++ b/TAO/tao/IIOP_Transport.h @@ -97,12 +97,12 @@ public: virtual int send_request (TAO_Stub *stub, TAO_ORB_Core *orb_core, TAO_OutputCDR &stream, - int twoway, + int message_semantics, ACE_Time_Value *max_wait_time); virtual int send_message (TAO_OutputCDR &stream, TAO_Stub *stub = 0, - int twoway = 1, + int message_semantics = TAO_Transport::TAO_TWOWAY_REQUEST, ACE_Time_Value *max_time_wait = 0); virtual int generate_request_header (TAO_Operation_Details &opdetails, diff --git a/TAO/tao/Strategies/DIOP_Transport.cpp b/TAO/tao/Strategies/DIOP_Transport.cpp index bf1c77f8d7d..3047e157f95 100644 --- a/TAO/tao/Strategies/DIOP_Transport.cpp +++ b/TAO/tao/Strategies/DIOP_Transport.cpp @@ -247,16 +247,16 @@ int TAO_DIOP_Transport::send_request (TAO_Stub *stub, TAO_ORB_Core *orb_core, TAO_OutputCDR &stream, - int two_way, + int message_semantics, ACE_Time_Value *max_wait_time) { if (this->ws_->sending_request (orb_core, - two_way) == -1) + message_semantics) == -1) return -1; if (this->send_message (stream, stub, - two_way, + message_semantics, max_wait_time) == -1) return -1; diff --git a/TAO/tao/Strategies/DIOP_Transport.h b/TAO/tao/Strategies/DIOP_Transport.h index a816219a559..7c42929342b 100644 --- a/TAO/tao/Strategies/DIOP_Transport.h +++ b/TAO/tao/Strategies/DIOP_Transport.h @@ -98,12 +98,12 @@ public: virtual int send_request (TAO_Stub *stub, TAO_ORB_Core *orb_core, TAO_OutputCDR &stream, - int twoway, + int message_semantics, ACE_Time_Value *max_wait_time); virtual int send_message (TAO_OutputCDR &stream, TAO_Stub *stub = 0, - int twoway = 1, + int message_semantics = TAO_Transport::TAO_TWOWAY_REQUEST, ACE_Time_Value *max_time_wait = 0); /// Initialising the messaging object diff --git a/TAO/tao/Strategies/SHMIOP_Transport.cpp b/TAO/tao/Strategies/SHMIOP_Transport.cpp index 8d539d0b55c..521291088da 100644 --- a/TAO/tao/Strategies/SHMIOP_Transport.cpp +++ b/TAO/tao/Strategies/SHMIOP_Transport.cpp @@ -220,16 +220,16 @@ int TAO_SHMIOP_Transport::send_request (TAO_Stub *stub, TAO_ORB_Core *orb_core, TAO_OutputCDR &stream, - int two_way, + int message_semantics, ACE_Time_Value *max_wait_time) { if (this->ws_->sending_request (orb_core, - two_way) == -1) + message_semantics) == -1) return -1; if (this->send_message (stream, stub, - two_way, + message_semantics, max_wait_time) == -1) return -1; diff --git a/TAO/tao/Strategies/SHMIOP_Transport.h b/TAO/tao/Strategies/SHMIOP_Transport.h index 7a7bd645646..21430b34000 100644 --- a/TAO/tao/Strategies/SHMIOP_Transport.h +++ b/TAO/tao/Strategies/SHMIOP_Transport.h @@ -98,12 +98,12 @@ public: virtual int send_request (TAO_Stub *stub, TAO_ORB_Core *orb_core, TAO_OutputCDR &stream, - int twoway, + int message_semantics, ACE_Time_Value *max_wait_time); virtual int send_message (TAO_OutputCDR &stream, TAO_Stub *stub = 0, - int twoway = 1, + int message_semantics = TAO_Transport::TAO_TWOWAY_REQUEST, ACE_Time_Value *max_time_wait = 0); /// Initialising the messaging object diff --git a/TAO/tao/Strategies/UIOP_Transport.cpp b/TAO/tao/Strategies/UIOP_Transport.cpp index 30bc815433c..46056bcbe8a 100644 --- a/TAO/tao/Strategies/UIOP_Transport.cpp +++ b/TAO/tao/Strategies/UIOP_Transport.cpp @@ -150,16 +150,16 @@ int TAO_UIOP_Transport::send_request (TAO_Stub *stub, TAO_ORB_Core *orb_core, TAO_OutputCDR &stream, - int two_way, + int message_semantics, ACE_Time_Value *max_wait_time) { if (this->ws_->sending_request (orb_core, - two_way) == -1) + message_semantics) == -1) return -1; if (this->send_message (stream, stub, - two_way, + message_semantics, max_wait_time) == -1) return -1; diff --git a/TAO/tao/Strategies/UIOP_Transport.h b/TAO/tao/Strategies/UIOP_Transport.h index d611df8f3f0..082bd31e7b6 100644 --- a/TAO/tao/Strategies/UIOP_Transport.h +++ b/TAO/tao/Strategies/UIOP_Transport.h @@ -90,12 +90,12 @@ public: virtual int send_request (TAO_Stub *stub, TAO_ORB_Core *orb_core, TAO_OutputCDR &stream, - int twoway, + int message_semantics, ACE_Time_Value *max_wait_time); virtual int send_message (TAO_OutputCDR &stream, TAO_Stub *stub = 0, - int twoway = 1, + int message_semantics = TAO_Transport::TAO_TWOWAY_REQUEST, ACE_Time_Value *max_time_wait = 0); /// Initialising the messaging object |