summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-08-03 20:00:34 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-08-03 20:00:34 +0000
commit395e4d9477b999ac897ca5626fa9871ad8897374 (patch)
treea8f56d0e6c86c9177971fd32eba34d033aeed715
parent1c41c70aba97bd55ac8f67a111a70b89fe9db461 (diff)
downloadATCD-395e4d9477b999ac897ca5626fa9871ad8897374.tar.gz
Creating branch for bug 2540 again
-rw-r--r--ChangeLog5
-rw-r--r--ace/Connector.h24
2 files changed, 17 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index ade78d2e16f..436605b25ba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Aug 3 10:39:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ace/Connector.h:
+ Improved documentation
+
Wed Aug 2 22:54:24 UTC 2006 Phil Mesnier <mesnier_p@ociweb.com>
* THANKS: Added Eric Danielou to the hall of fame.
diff --git a/ace/Connector.h b/ace/Connector.h
index 516fc8a775d..41a2e688c1e 100644
--- a/ace/Connector.h
+++ b/ace/Connector.h
@@ -193,11 +193,11 @@ public:
// = Connection establishment methods.
/**
- * Initiate connection of <svc_handler> to peer at <remote_addr>
- * using <synch_options>. If the caller wants to designate the
- * selected <local_addr> they can (and can also insist that the
- * <local_addr> be reused by passing a value <reuse_addr> ==
- * 1). @a flags and <perms> can be used to pass any flags that are
+ * Initiate connection of @a svc_handler to peer at @a remote_addr
+ * using @a synch_options. If the caller wants to designate the
+ * selected @a local_addr they can (and can also insist that the
+ * @a local_addr be reused by passing a value @a reuse_addr ==
+ * 1). @a flags and @a perms can be used to pass any flags that are
* needed to perform specific operations such as opening a file
* within connect with certain permissions. If the connection fails
* the <close> hook on the <svc_handler> will be called
@@ -214,11 +214,11 @@ public:
/**
* This is a variation on the previous <connect> method. On cached
- * connectors the <svc_handler_hint> variable can be used as a hint
+ * connectors the @a svc_handler_hint variable can be used as a hint
* for future lookups. Since this variable is modified in the
* context of the internal cache its use is thread-safe. But the
* actual svc_handler for the current connection is returned in the
- * second parameter <svc_handler>. If the connection fails the
+ * second parameter @a svc_handler. If the connection fails the
* <close> hook on the <svc_handler> will be called automatically to
* prevent resource leaks.
*/
@@ -233,8 +233,8 @@ public:
int perms = 0);
/**
- * Initiate connection of <n> <svc_handlers> to peers at
- * <remote_addrs> using <synch_options>. Returns -1 if failure
+ * Initiate connection of @a n @a svc_handlers to peers at
+ * @a remote_addrs using @a synch_options. Returns -1 if failure
* occurs and 0 otherwise. If <failed_svc_handlers> is non-NULL, a
* 1 is placed in the corresponding index of <failed_svc_handler>
* for each <svc_handlers[i]> that failed to connect, else a 0 is
@@ -248,10 +248,10 @@ public:
ACE_Synch_Options::defaults);
/**
- * Cancel a <svc_handler> that was started asynchronously. Note that
+ * Cancel the @a svc_handler that was started asynchronously. Note that
* this is the only case when the Connector does not actively close
- * the <svc_handler>. It is left up to the caller of <cancel> to
- * decide the fate of the <svc_handler>.
+ * the @a svc_handler. It is left up to the caller of <cancel> to
+ * decide the fate of the @a svc_handler.
*/
virtual int cancel (SVC_HANDLER *svc_handler);