summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/CSIv2/TSS_IORInterceptor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/CSIv2/TSS_IORInterceptor.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/CSIv2/TSS_IORInterceptor.cpp88
1 files changed, 88 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/CSIv2/TSS_IORInterceptor.cpp b/TAO/orbsvcs/orbsvcs/CSIv2/TSS_IORInterceptor.cpp
new file mode 100644
index 00000000000..95e6259e2e5
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/CSIv2/TSS_IORInterceptor.cpp
@@ -0,0 +1,88 @@
+// $Id$
+
+
+#include "TSS_IORInterceptor.h"
+
+
+ACE_RCSID (CSIv2,
+ TSS_IORInterceptor,
+ "$Id$")
+
+
+TAO::TSS_IORInterceptor::TSS_IORInterceptor (void)
+{
+}
+
+char *
+TAO::TSS_IORInterceptor::name (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+ return CORBA::string_dup ("TAO::TSS_IORInterceptor");
+}
+
+void
+TAO::TSS_IORInterceptor::destroy (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+}
+
+void
+TAO::TSS_IORInterceptor::establish_components (
+ PortableInterceptor::IORInfo_ptr info
+ ACE_ENV_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+ IOP::TaggedComponent tc;
+
+ tc.component_id = IOP::TAG_CSI_SEC_MECH_LIST;
+
+ CSIIOP::CompoundSecMechList component;
+
+ component.stateful = 0; // Only stateless TSS currently supported.
+
+ CSIIOP::CompoundSecMechanisms & mechanisms = component.mechanisms;
+
+ // Only SSLIOP is supported at this point in time.
+ mechanisms.length (1);
+
+ CSIIOP::CompoundSecMech & mech = mechanisms[0];
+
+ mech.target_requires =
+ CSIIOP::Security::Integrity
+ | Security::Confidentiality
+ mech.transport_mech;
+ mech.as_context_mech;
+ mech.sas_context_mech;
+
+ // TAO currently only supports CSIv2 over IIOP.
+ info->add_ior_component_to_profile (component,
+ IOP::TAG_INTERNET_IOP
+ ACE_ENV_ARG_PARAMETER);
+ ACE_CHECK;
+}
+
+void
+TAO::TSS_IORInterceptor::components_established (
+ PortableInterceptor::IORInfo_ptr
+ ACE_ENV_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+}
+
+void
+TAO::TSS_IORInterceptor::adapter_manager_state_changed (
+ PortableInterceptor::AdapterManagerId,
+ PortableInterceptor::AdapterState
+ ACE_ENV_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+}
+
+void
+TAO::TSS_IORInterceptor::adapter_state_changed (
+ const PortableInterceptor::ObjectReferenceTemplateSeq &,
+ PortableInterceptor::AdapterState
+ ACE_ENV_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+}