summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>1999-12-15 02:24:57 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>1999-12-15 02:24:57 +0000
commit01e55e285148a6ea9514c342ea28414360279204 (patch)
tree271a8f0ebb97804e4e361d17e5ce4aabdadde670
parent12fda9344514c208840b3afef238f9630648f373 (diff)
downloadATCD-01e55e285148a6ea9514c342ea28414360279204.tar.gz
ChangeLogTag:Tue Dec 14 20:22:37 1999 Ossama Othman <othman@cs.wustl.edu>
-rw-r--r--TAO/tao/IIOP_Factory.h2
-rw-r--r--TAO/tao/Pluggable.h10
-rw-r--r--TAO/tao/Profile.h6
-rw-r--r--TAO/tao/Protocol_Factory.h2
-rw-r--r--TAO/tao/UIOP_Factory.cpp1
-rw-r--r--TAO/tao/UIOP_Factory.h2
6 files changed, 12 insertions, 11 deletions
diff --git a/TAO/tao/IIOP_Factory.h b/TAO/tao/IIOP_Factory.h
index 2ae5d65c20c..36030c650e2 100644
--- a/TAO/tao/IIOP_Factory.h
+++ b/TAO/tao/IIOP_Factory.h
@@ -6,7 +6,7 @@
// TAO
//
// = FILENAME
-// Protocol_Factory.h
+// IIOP_Factory.h
//
// = AUTHOR
// Fred Kuhns <fredk@cs.wustl.edu>
diff --git a/TAO/tao/Pluggable.h b/TAO/tao/Pluggable.h
index 2f3b601ecaa..193207ecc6f 100644
--- a/TAO/tao/Pluggable.h
+++ b/TAO/tao/Pluggable.h
@@ -50,11 +50,11 @@ typedef ACE_Message_Queue<ACE_NULL_SYNCH> TAO_Transport_Buffering_Queue;
class TAO_Export TAO_Transport
{
// = TITLE
- // Generic definitions for the new Transport class.
+ // Generic definitions for the Transport class.
//
// = DESCRIPTION
// The transport object is created in the Service handler
- // constructor and deleted in the service handlers destructor!!
+ // constructor and deleted in the Service Handler's destructor!!
public:
TAO_Transport (CORBA::ULong tag,
@@ -67,7 +67,7 @@ public:
CORBA::ULong tag (void) const;
// The tag, each concrete class will have a specific tag value.
- virtual void close_connection() = 0;
+ virtual void close_connection (void) = 0;
// Call the corresponding connection handler's <close>
// method.
@@ -154,8 +154,8 @@ public:
// Strategy if Reactor is used for that strategy. Default
// implementation out here returns -1 setting <errno> to ENOTSUP.
- // = Setting the Transport object in Idle state. Theese methods are
- // routed the TMS object. The TMS starategies implement the
+ // = Setting the Transport object in Idle state. These methods are
+ // routed through the TMS object. The TMS strategies implement the
// methods accordingly.
virtual int idle_after_send (void);
diff --git a/TAO/tao/Profile.h b/TAO/tao/Profile.h
index f0a296bb0be..9aef681f1ab 100644
--- a/TAO/tao/Profile.h
+++ b/TAO/tao/Profile.h
@@ -91,18 +91,18 @@ public:
virtual CORBA::Boolean is_equivalent (const TAO_Profile* other_profile) = 0;
// Return true if this profile is equivalent to other_profile. Two
- // profiles are equivalent iff their key, port, host, object_key and
+ // profiles are equivalent iff their tag, port, host, object_key and
// version are the same.
virtual CORBA::ULong hash (CORBA::ULong max,
CORBA::Environment &ACE_TRY_ENV) = 0;
// Return a hash value for this object.
- virtual int addr_to_string(char *buffer, size_t length) = 0;
+ virtual int addr_to_string (char *buffer, size_t length) = 0;
// Return a string representation for the address. Returns
// -1 if buffer is too small. The purpose of this method is to
// provide a general interface to the underlying address object's
- // addr_to_string method. This allowsthe protocol implementor to
+ // addr_to_string method. This allows the protocol implementor to
// select the appropriate string format.
virtual void reset_hint (void) = 0;
diff --git a/TAO/tao/Protocol_Factory.h b/TAO/tao/Protocol_Factory.h
index 203061e36df..016c712aea2 100644
--- a/TAO/tao/Protocol_Factory.h
+++ b/TAO/tao/Protocol_Factory.h
@@ -56,7 +56,7 @@ public:
virtual int requires_explicit_endpoint (void) const = 0;
// Some protocols should not create a default endpoint unless the
- // user specifies a -ORBendpoint option. For example, local IPC
+ // user specifies a -ORBEndpoint option. For example, local IPC
// (aka UNIX domain sockets) is unable to remove the rendesvouz
// point if the server crashes. For those protocols is better to
// create the endpoint only if the user requests one.
diff --git a/TAO/tao/UIOP_Factory.cpp b/TAO/tao/UIOP_Factory.cpp
index f5fc3e5b583..e23426bb98c 100644
--- a/TAO/tao/UIOP_Factory.cpp
+++ b/TAO/tao/UIOP_Factory.cpp
@@ -69,6 +69,7 @@ TAO_UIOP_Protocol_Factory::make_connector (void)
ACE_NEW_RETURN (connector,
TAO_UIOP_Connector,
0);
+
return connector;
}
diff --git a/TAO/tao/UIOP_Factory.h b/TAO/tao/UIOP_Factory.h
index 17b5e1d8f40..ea747a96c25 100644
--- a/TAO/tao/UIOP_Factory.h
+++ b/TAO/tao/UIOP_Factory.h
@@ -6,7 +6,7 @@
// TAO
//
// = FILENAME
-// Protocol_Factory.h
+// UIOP_Factory.h
//
// = AUTHOR
// Fred Kuhns <fredk@cs.wustl.edu>