aboutsummaryrefslogtreecommitdiff
path: root/externals/ace/Connector.h
diff options
context:
space:
mode:
Diffstat (limited to 'externals/ace/Connector.h')
-rw-r--r--externals/ace/Connector.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/externals/ace/Connector.h b/externals/ace/Connector.h
index d0b98cfa923..08ef2aa0b8d 100644
--- a/externals/ace/Connector.h
+++ b/externals/ace/Connector.h
@@ -4,7 +4,7 @@
/**
* @file Connector.h
*
- * $Id: Connector.h 91058 2010-07-12 08:20:09Z johnnyw $
+ * $Id: Connector.h 89510 2010-03-17 12:21:14Z vzykov $
*
* @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
*/
@@ -424,7 +424,7 @@ public:
SUPER;
/**
- * Initialize a connector. @a flags indicates how SVC_HANDLER's
+ * Initialize a connector. @a flags indicates how <SVC_HANDLER>'s
* should be initialized prior to being activated. Right now, the
* only flag that is processed is ACE_NONBLOCK, which enabled
* non-blocking I/O on the SVC_HANDLER when it is opened.
@@ -535,21 +535,21 @@ protected:
/// Creation strategy for an Connector.
CREATION_STRATEGY *creation_strategy_;
- /// True if Connector created the creation strategy and thus should
+ /// true if Connector created the creation strategy and thus should
/// delete it, else false.
bool delete_creation_strategy_;
/// Connect strategy for a Connector.
CONNECT_STRATEGY *connect_strategy_;
- /// True if Connector created the connect strategy and thus should
+ /// true if Connector created the connect strategy and thus should
/// delete it, else false.
bool delete_connect_strategy_;
- /// Concurrency strategy for a Connector.
+ /// Concurrency strategy for an <Connector>.
CONCURRENCY_STRATEGY *concurrency_strategy_;
- /// True if Connector created the concurrency strategy and thus should
+ /// true if Connector created the concurrency strategy and thus should
/// delete it, else false.
bool delete_concurrency_strategy_;
};