diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-03-06 16:51:58 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-03-06 16:51:58 +0000 |
commit | 80b7426c24bcf4d1388ac9c84c912ec3214b9efa (patch) | |
tree | fd1bca722b65a38a690b3119205868ec0a642c95 /TAO/tao/IIOP_Connector.h | |
parent | 066e276a46bfc60f8a1a8b561fab12492f95131d (diff) | |
download | ATCD-80b7426c24bcf4d1388ac9c84c912ec3214b9efa.tar.gz |
.
Diffstat (limited to 'TAO/tao/IIOP_Connector.h')
-rw-r--r-- | TAO/tao/IIOP_Connector.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/tao/IIOP_Connector.h b/TAO/tao/IIOP_Connector.h index a58ce3de391..ae1ce23ebb1 100644 --- a/TAO/tao/IIOP_Connector.h +++ b/TAO/tao/IIOP_Connector.h @@ -36,13 +36,11 @@ class TAO_Export TAO_IIOP_Connector : public TAO_Connector // = DESCRIPTION // IIOP Specific Connector bridge for pluggable protocols. public: - + // = Initialization and termination methods. TAO_IIOP_Connector (void); - // Constructor. Do we want to pass in the tag here or should it be - // statically defined? - - int preconnect (char *preconnections); - // Initial set of connections to be established. + // Constructor. + // @@ Do we want to pass in the tag here or should it be statically + // defined? int open (TAO_Resource_Factory *trf, ACE_Reactor *reactor); // Initialize object and register with reactor. @@ -50,6 +48,9 @@ public: int close (void); // Shutdown Connector bridge and concreate Connector. + int preconnect (char *preconnections); + // Initial set of connections to be established. + CORBA::ULong tag (void); // The tag identifying the specific ORB transport layer protocol. // For example TAO_IOP_TAG_INTERNET_IOP = 0. The tag is used in the @@ -57,8 +58,7 @@ public: // profile0} {tag1, profole1} ...} GIOP.h defines typedef // CORBA::ULong TAO_IOP_Profile_ID; - - TAO_Transport* connect (TAO_Profile *profile, + TAO_Transport *connect (TAO_Profile *profile, CORBA::Environment &env); // Connect will be called from TAO_GIOP_Invocation::start |