summaryrefslogtreecommitdiff
path: root/TAO/tao/GIOP.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/GIOP.h')
-rw-r--r--TAO/tao/GIOP.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/TAO/tao/GIOP.h b/TAO/tao/GIOP.h
index e4094d9e765..f82b14491fb 100644
--- a/TAO/tao/GIOP.h
+++ b/TAO/tao/GIOP.h
@@ -307,17 +307,17 @@ public:
static CORBA::Boolean start_message (TAO_GIOP::Message_Type t,
TAO_OutputCDR &msg,
- TAO_ORB_Core* orb_core);
+ TAO_ORB_Core* orb_core);
// Build the header for a message of type <t> into stream <msg>.
static CORBA::Boolean send_request (TAO_SVC_HANDLER *handler,
TAO_OutputCDR &stream,
- TAO_ORB_Core* orb_core);
+ TAO_ORB_Core* orb_core);
// Send message, returns TRUE if success, else FALSE.
static TAO_GIOP::Message_Type recv_request (TAO_SVC_HANDLER *&handler,
- TAO_InputCDR &msg,
- TAO_ORB_Core *orb_core);
+ TAO_InputCDR &msg,
+ TAO_ORB_Core *orb_core);
// Reads message, returns message type from header.
static void make_error (TAO_OutputCDR &msg, ...);
@@ -342,33 +342,33 @@ public:
// Returns the stringified <MsgType>.
static TAO_GIOP_ReplyStatusType convert_CORBA_to_GIOP_exception (CORBA::ExceptionType corba_type);
- // Convert the exception type from CORBA to GIOP
+ // Convert the exception type from CORBA to GIOP
private:
static CORBA::Boolean start_message_lite (TAO_GIOP::Message_Type t,
- TAO_OutputCDR &msg);
+ TAO_OutputCDR &msg);
// Build the lightweight header for a message of type <t> into
// stream <msg>.
static CORBA::Boolean start_message_std (TAO_GIOP::Message_Type t,
- TAO_OutputCDR &msg);
+ TAO_OutputCDR &msg);
// Build the standard header for a message of type <t> into
// stream <msg>.
static int parse_header_std (TAO_InputCDR &cdr,
- int& do_byte_swap,
- TAO_GIOP::Message_Type& message_type,
- CORBA::ULong& message_size);
+ int& do_byte_swap,
+ TAO_GIOP::Message_Type& message_type,
+ CORBA::ULong& message_size);
static int parse_header_lite (TAO_InputCDR &cdr,
- int& do_byte_swap,
- TAO_GIOP::Message_Type& message_type,
- CORBA::ULong& message_size);
+ int& do_byte_swap,
+ TAO_GIOP::Message_Type& message_type,
+ CORBA::ULong& message_size);
static int parse_header (TAO_InputCDR &cdr,
- int& do_byte_swap,
- TAO_GIOP::Message_Type& message_type,
- CORBA::ULong& message_size,
- TAO_ORB_Core *orb_core);
+ int& do_byte_swap,
+ TAO_GIOP::Message_Type& message_type,
+ CORBA::ULong& message_size,
+ TAO_ORB_Core *orb_core);
// Parse the header, extracting all the relevant info.
};