summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2002-07-02 21:17:28 +0000
committerbala <balanatarajan@users.noreply.github.com>2002-07-02 21:17:28 +0000
commit77ef950e896b9d05ea3c5fd909edc8f6c2294da0 (patch)
treebdd7affaa1eccd7baa541b74d0c4f98d96184bb3 /TAO/orbsvcs
parentcac1bc5e03f92d68b9eb3fcfeef0999a7ca1a6bc (diff)
downloadATCD-77ef950e896b9d05ea3c5fd909edc8f6c2294da0.tar.gz
ChangeLogTag: Tue Jul 2 16:16:18 2002 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'TAO/orbsvcs')
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp6
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.h1
-rw-r--r--TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.cpp6
-rw-r--r--TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.h1
4 files changed, 14 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp b/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp
index 6f2881f5d00..095058e1591 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp
@@ -59,6 +59,12 @@ TAO_UIPMC_Transport::event_handler_i (void)
return this->connection_handler_;
}
+TAO_Connection_Handler *
+TAO_UIPMC_Transport::connection_handler_i (void)
+{
+ return this->connection_handler_;
+}
+
TAO_Pluggable_Messaging *
TAO_UIPMC_Transport::messaging_object (void)
{
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.h b/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.h
index 12442e36fc9..7e7e86de500 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.h
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.h
@@ -71,6 +71,7 @@ protected:
//@{
virtual ACE_Event_Handler * event_handler_i (void);
+ virtual TAO_Connection_Handler *connection_handler_i (void);
virtual ACE_Event_Handler * invalidate_event_handler_i (void);
virtual TAO_Pluggable_Messaging *messaging_object (void);
diff --git a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.cpp b/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.cpp
index 0341ba08e63..39d57d7624b 100644
--- a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.cpp
+++ b/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.cpp
@@ -46,6 +46,12 @@ TAO_SSLIOP_Transport::event_handler_i (void)
return this->connection_handler_;
}
+TAO_Connection_Handler *
+TAO_SSLIOP_Transport::connection_handler_i (void)
+{
+ return this->connection_handler_;
+}
+
TAO_Pluggable_Messaging *
TAO_SSLIOP_Transport::messaging_object (void)
{
diff --git a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.h b/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.h
index e791bcfd173..ff361fd6131 100644
--- a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.h
+++ b/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.h
@@ -87,6 +87,7 @@ protected:
//@{
virtual ACE_Event_Handler * event_handler_i (void);
+ virtual TAO_Connection_Handler *connection_handler_i (void);
virtual ACE_Event_Handler * invalidate_event_handler_i (void);
virtual TAO_Pluggable_Messaging *messaging_object (void);