summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.h')
-rw-r--r--ACE/TAO/orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.h104
1 files changed, 104 insertions, 0 deletions
diff --git a/ACE/TAO/orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.h b/ACE/TAO/orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.h
new file mode 100644
index 00000000000..44dba5ecf25
--- /dev/null
+++ b/ACE/TAO/orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.h
@@ -0,0 +1,104 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file IIOP_SSL_Connector.h
+ *
+ * $Id$
+ *
+ * IIOP specific connector processing -- SSL aware version
+ *
+ * @author Ossama Othman <ossama@uci.edu>
+ */
+//=============================================================================
+
+
+#ifndef TAO_IIOP_SSL_CONNECTOR_H
+#define TAO_IIOP_SSL_CONNECTOR_H
+
+#include /**/ "ace/pre.h"
+
+#include "orbsvcs/SSLIOP/IIOP_SSL_Connection_Handler.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "tao/IIOP_Connector.h"
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace TAO
+{
+ /**
+ * @class IIOP_SSL_Connector
+ *
+ * @brief IIOP-specific Connector (SSL aware) bridge for pluggable
+ * protocols.
+ *
+ * Concrete instance of the TAO_Connector class. Responsible
+ * for establishing a connection with a server and is called from the
+ * Connector_Registry.
+ */
+ class IIOP_SSL_Connector : public TAO_IIOP_Connector
+ {
+ public:
+
+ /// Constructor.
+ IIOP_SSL_Connector (void);
+
+ /// Destructor.
+ ~IIOP_SSL_Connector (void);
+
+ int open (TAO_ORB_Core *orb_core);
+ int close (void);
+
+ public:
+
+ typedef TAO_Connect_Concurrency_Strategy<IIOP_SSL_Connection_Handler>
+ CONNECT_CONCURRENCY_STRATEGY;
+
+ typedef TAO_Connect_Creation_Strategy<IIOP_SSL_Connection_Handler>
+ CONNECT_CREATION_STRATEGY;
+
+ typedef ACE_Connect_Strategy<IIOP_SSL_Connection_Handler,
+ ACE_SOCK_CONNECTOR>
+ CONNECT_STRATEGY ;
+
+ typedef ACE_Strategy_Connector<IIOP_SSL_Connection_Handler,
+ ACE_SOCK_CONNECTOR>
+ BASE_CONNECTOR;
+
+ protected:
+
+ /**
+ * @name The TAO_Connector Methods
+ *
+ * Check the documentation in tao/Transport_Connector.h for details.
+ */
+ //@{
+ int set_validate_endpoint (TAO_Endpoint *ep);
+
+ TAO_Transport *make_connection (TAO::Profile_Transport_Resolver *r,
+ TAO_Transport_Descriptor_Interface &desc,
+ ACE_Time_Value *timeout = 0);
+
+ virtual int cancel_svc_handler (TAO_Connection_Handler * svc_handler);
+ //@}
+
+ private:
+
+ /// Our connect strategy
+ CONNECT_STRATEGY connect_strategy_;
+
+ /// The connector initiating connection requests for IIOP_SSL.
+ BASE_CONNECTOR base_connector_;
+ };
+
+} // End TAO namespace.
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#include /**/ "ace/post.h"
+
+#endif /* TAO_IIOP_SSL_CONNECTOR_H */