diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2008-07-22 11:34:18 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2008-07-22 11:34:18 +0000 |
commit | b575c80a59d3be4a8c10788c4d18b0f0beea46c8 (patch) | |
tree | 3cacdd80884731dd236f6a4711f0337ea9b0d50e /TAO/tao/TAO_Server_Request.cpp | |
parent | c0c1252a69dea7b932be665c31102e777897e6c8 (diff) | |
download | ATCD-b575c80a59d3be4a8c10788c4d18b0f0beea46c8.tar.gz |
Tue Jul 22 11:31:28 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/TAO_Server_Request.cpp')
-rw-r--r-- | TAO/tao/TAO_Server_Request.cpp | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/TAO/tao/TAO_Server_Request.cpp b/TAO/tao/TAO_Server_Request.cpp index 893d416f762..69358c20e18 100644 --- a/TAO/tao/TAO_Server_Request.cpp +++ b/TAO/tao/TAO_Server_Request.cpp @@ -270,7 +270,8 @@ TAO_ServerRequest::init_reply (void) this->outgoing_->message_attributes (this->request_id_, 0, TAO_Transport::TAO_REPLY, - 0); + 0, + false); // Construct a REPLY header. this->mesg_base_->generate_reply_header (*this->outgoing_, reply_params); @@ -317,7 +318,8 @@ TAO_ServerRequest::send_no_exception_reply (void) this->outgoing_->message_attributes (this->request_id_, 0, TAO_Transport::TAO_REPLY, - 0); + 0, + false); // Construct a REPLY header. this->mesg_base_->generate_reply_header (*this->outgoing_, reply_params); @@ -352,9 +354,9 @@ TAO_ServerRequest::tao_send_reply (void) this->outgoing_->more_fragments (false); - int result = this->transport_->send_message (*this->outgoing_, - 0, - TAO_Transport::TAO_REPLY); + int const result = this->transport_->send_message (*this->outgoing_, + 0, + TAO_Transport::TAO_REPLY); if (result == -1) { if (TAO_debug_level > 0) @@ -509,7 +511,8 @@ TAO_ServerRequest::send_cached_reply (CORBA::OctetSeq &s) this->outgoing_->message_attributes (this->request_id_, 0, TAO_Transport::TAO_REPLY, - 0); + 0, + false); // Make the reply message if (this->mesg_base_->generate_reply_header (*this->outgoing_, @@ -527,9 +530,11 @@ TAO_ServerRequest::send_cached_reply (CORBA::OctetSeq &s) s.length ()); if (!this->outgoing_->good_bit ()) - ACE_ERROR ((LM_ERROR, - ACE_TEXT ("TAO (%P|%t) - ServerRequest::send_cached_reply, ") - ACE_TEXT ("could not marshal reply\n"))); + { + ACE_ERROR ((LM_ERROR, + ACE_TEXT ("TAO (%P|%t) - ServerRequest::send_cached_reply, ") + ACE_TEXT ("could not marshal reply\n"))); + } this->outgoing_->more_fragments (false); |