summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2002-04-01 17:41:31 +0000
committerSteve Huston <shuston@riverace.com>2002-04-01 17:41:31 +0000
commit91d015a85bcd9199e3c2e968d4ed06a420e32ea5 (patch)
tree1c3b3c63c2f421c80a71b7f697c0600d6d45df06
parent3a3e5de6565949266ff9886edd4afb316c90c77d (diff)
downloadATCD-91d015a85bcd9199e3c2e968d4ed06a420e32ea5.tar.gz
ChangeLogTag:Mon Apr 1 12:38:44 2002 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLogs/ChangeLog-02a4
-rw-r--r--ChangeLogs/ChangeLog-03a4
-rw-r--r--ace/Asynch_Acceptor.h10
4 files changed, 17 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 01619b9cd56..6c959e27dce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Apr 1 12:38:44 2002 Steve Huston <shuston@riverace.com>
+
+ * ace/Asynch_Acceptor.h: Corrected @arg to be @a for Doxygen.
+
Sun Mar 31 22:44:00 2002 Si Mong Park <spark@ociweb.com>
* apps/FaCE/FaCE_OS.h:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 01619b9cd56..6c959e27dce 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,7 @@
+Mon Apr 1 12:38:44 2002 Steve Huston <shuston@riverace.com>
+
+ * ace/Asynch_Acceptor.h: Corrected @arg to be @a for Doxygen.
+
Sun Mar 31 22:44:00 2002 Si Mong Park <spark@ociweb.com>
* apps/FaCE/FaCE_OS.h:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 01619b9cd56..6c959e27dce 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,7 @@
+Mon Apr 1 12:38:44 2002 Steve Huston <shuston@riverace.com>
+
+ * ace/Asynch_Acceptor.h: Corrected @arg to be @a for Doxygen.
+
Sun Mar 31 22:44:00 2002 Si Mong Park <spark@ociweb.com>
* apps/FaCE/FaCE_OS.h:
diff --git a/ace/Asynch_Acceptor.h b/ace/Asynch_Acceptor.h
index b540021a175..41a454a3a10 100644
--- a/ace/Asynch_Acceptor.h
+++ b/ace/Asynch_Acceptor.h
@@ -51,7 +51,7 @@ public:
/**
* @c open starts one or more asynchronous accept requests on a
- * @arg address. Each accept operation may optionally read an
+ * @a address. Each accept operation may optionally read an
* initial buffer from the new connection when accepted.
*
* @param address The address to listen/accept connections on.
@@ -91,13 +91,13 @@ public:
* connection is subsequently refused.
* @param number_of_initial_accepts Optional, the number of asynchronous
* accepts that are started immediately. If -1 (the
- * default), the value of @arg backlog is used.
+ * default), the value of @a backlog is used.
*
* @note On Windows, the peer address is only available at the time
* the connection is accepted. Therefore, if you require the peer
* address on Windows, do not rely on the
* @c ACE_SOCK::get_remote_addr() method - it won't work. You must
- * supply a non-zero value for @arg pass_addresses and obtain the
+ * supply a non-zero value for @a pass_addresses and obtain the
* peer address in the @c ACE_Service_Handler::addresses() method.
*
* @see ACE_INET_Addr
@@ -126,7 +126,7 @@ public:
/// This initiates a new asynchronous accept operation.
/**
- * You need only call this method if the @arg reissue_accept argument
+ * You need only call this method if the @a reissue_accept argument
* passed to @c open() was 0.
*/
virtual int accept (size_t bytes_to_read = 0, const void *act = 0);
@@ -159,7 +159,7 @@ public:
* value, another accept is initiated.
*
* The default implemenation always returns the value passed as the
- * @c open() method's @arg reissue_accept argument. That value can also
+ * @c open() method's @a reissue_accept argument. That value can also
* be changed using the @c reissue_accept() method.
*/
virtual int should_reissue_accept (void);