summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/tao/GIOP_Message_Invocation.h~93
1 files changed, 0 insertions, 93 deletions
diff --git a/TAO/tao/GIOP_Message_Invocation.h~ b/TAO/tao/GIOP_Message_Invocation.h~
deleted file mode 100644
index 88f5637548d..00000000000
--- a/TAO/tao/GIOP_Message_Invocation.h~
+++ /dev/null
@@ -1,93 +0,0 @@
-// -*- C++ -*-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO
-//
-// = FILENAME
-// GIOP_Message_1_1.h
-//
-// = DESCRIPTION
-// Interface for the GIOP version 1.1 of the protocol
-//
-// = AUTHOR
-// Balachandran Natarajan <bala@cs.wustl.edu>
-//
-// ============================================================================
-#ifndef _TAO_GIOP_MESSAGE_1_1_H_
-#define _TAO_GIOP_MESSAGE_1_1_H_
-
-#include "tao/GIOP_Message_Factory.h"
-
-class TAO_Export TAO_GIOP_Client_Message_1_1:
- public TAO_GIOP_Client_Message_Factory
-{
- // = TITLE
- // Definitions of GIOP 1.1 specific stuff
- //
- // = DESCRIPTION
- // This class will hold the specific details of 1.1
- //
-public:
-
- TAO_GIOP_Client_Message_1_1 (void);
- // Ctor
-
- ~TAO_GIOP_Client_Message_1_1 (void);
- // Dtor
-
- CORBA::Boolean
- write_request_header (const IOP::ServiceContextList& svc_ctx,
- CORBA::ULong request_id,
- CORBA::Octet response_flags,
- TAO_Stub *stub,
- const CORBA::Short address_disposition,
- const char *opname,
- TAO_OutputCDR &msg);
- // Writes the rquest header.
-
- CORBA::Boolean write_locate_request_header (CORBA::ULong request_id,
- TAO_Stub *stub,
- const CORBA::Short address_disposition,
- TAO_OutputCDR &msg);
- // Write the locate request header
-
-
-
-
- /**********************************************************/
- // Methods related to the messages that would be sent by the server.
- /**********************************************************/
- int handle_input (TAO_Transport *transport,
- TAO_ORB_Core *orb_core,
- TAO_GIOP_Message_State &state,
- ACE_Time_Value *max_wait_time = 0);
-
-private:
- const size_t get_header_len (void);
- // Returns the header length
-
- const size_t get_message_size_offset (void);
- // Returns the message size offset
-};
-
-class TAO_Export TAO_GIOP_Server_Message_1_1:
- public TAO_GIOP_Server_Message_Factory
-{
- // = TITLE
- // Definitions of GIOP 1.1 specific stuff
- //
- // = DESCRIPTION
- // This class will hold the specific details of 1.1
- //
-};
-const size_t TAO_GIOP_1_1_HEADER_LEN = 12;
-const size_t TAO_GIOP_1_1_MESSAGE_SIZE_OFFSET = 8;
-
-#if defined (__ACE_INLINE__)
-# include "tao/GIOP_Message_1_1.i"
-#endif /* __ACE_INLINE__ */
-
-#endif /*TAO_IIOP_ACCEPTOR_1_1_H_ */