summaryrefslogtreecommitdiff
path: root/TAO/tao/IIOP_Connect.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/IIOP_Connect.h')
-rw-r--r--TAO/tao/IIOP_Connect.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/TAO/tao/IIOP_Connect.h b/TAO/tao/IIOP_Connect.h
index 00c85cc3f0e..dee430ffb10 100644
--- a/TAO/tao/IIOP_Connect.h
+++ b/TAO/tao/IIOP_Connect.h
@@ -54,7 +54,6 @@ public:
TAO_IIOP_Handler_Base (ACE_Thread_Manager *t);
TAO_IIOP_Handler_Base (TAO_ORB_Core *orb_core);
- virtual TAO_Transport *transport (void) = 0;
};
class TAO_Export TAO_IIOP_Client_Connection_Handler : public TAO_IIOP_Handler_Base
@@ -65,7 +64,8 @@ class TAO_Export TAO_IIOP_Client_Connection_Handler : public TAO_IIOP_Handler_Ba
public:
// = Intialization method.
TAO_IIOP_Client_Connection_Handler (ACE_Thread_Manager *t = 0,
- TAO_ORB_Core* orb_core = 0);
+ TAO_ORB_Core* orb_core = 0,
+ CORBA::Boolean flag = 0);
virtual ~TAO_IIOP_Client_Connection_Handler (void);
@@ -96,10 +96,6 @@ public:
virtual TAO_Transport *transport (void);
// Return the transport objects
- virtual int init_mesg_protocol (CORBA::Octet major,
- CORBA::Octet minor);
- // Assigns the right messaging protocol object based on the version
-
protected:
int handle_cleanup (void);
// This method deregisters the handler from the reactor and closes it.
@@ -109,9 +105,9 @@ protected:
TAO_ORB_Core *orb_core_;
// Cached ORB Core.
-
- TAO_Pluggable_Messaging_Interface *mesg_factory_;
- // The Connector messaging factory
+
+ CORBA::Boolean lite_flag_;
+ // Are we using GIOP lite?
};
// ****************************************************************