summaryrefslogtreecommitdiff
path: root/TAO/tao/Acceptor_Impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Acceptor_Impl.h')
-rw-r--r--TAO/tao/Acceptor_Impl.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/TAO/tao/Acceptor_Impl.h b/TAO/tao/Acceptor_Impl.h
index d1b57dba2d9..bc78aafd12d 100644
--- a/TAO/tao/Acceptor_Impl.h
+++ b/TAO/tao/Acceptor_Impl.h
@@ -32,11 +32,8 @@ class TAO_Creation_Strategy : public ACE_Creation_Strategy<SVC_HANDLER>
// Creates a Svc_Handler and set the ORB_Core pointer on it.
public:
TAO_Creation_Strategy (TAO_ORB_Core *orb_core,
- void *arg = 0,
CORBA::Boolean flag = 0);
- // Constructor. <arg> parameter is used to pass any special
- // state/info to the service handler upon creation. Currently used
- // by IIOP and UIOP to pass protocol configuration properties.
+ // Constructor.
int make_svc_handler (SVC_HANDLER *&sh);
// Create a SVC_HANDLER and set the ORB_Core pointer on it.
@@ -44,10 +41,7 @@ public:
protected:
TAO_ORB_Core *orb_core_;
// Pointer to the ORB Core.
-
- void *arg_;
- // Some info/state to be passed to the service handler we create.
-
+
CORBA::Boolean lite_flag_;
// Should we use the Lite version for any protocol?
};