summaryrefslogtreecommitdiff
path: root/ACE/ace/SOCK_IO.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-03-19 11:41:31 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-03-19 11:41:31 +0000
commit09a3545de1b2f32ae8c7faa0c3f0bf3c7dc4381b (patch)
tree2ae6788acab6523b1486568cab143856f2d21f65 /ACE/ace/SOCK_IO.h
parent936227ecada92382d9a191c39bfbcddba5d73b0c (diff)
downloadATCD-09a3545de1b2f32ae8c7faa0c3f0bf3c7dc4381b.tar.gz
Wed Mar 19 11:41:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/SOCK_IO.h')
-rw-r--r--ACE/ace/SOCK_IO.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/ace/SOCK_IO.h b/ACE/ace/SOCK_IO.h
index 6ef390e114d..f301c9c4085 100644
--- a/ACE/ace/SOCK_IO.h
+++ b/ACE/ace/SOCK_IO.h
@@ -42,9 +42,9 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
* operation times out, -1 is returned with @c errno == ETIME.
* If it succeeds the number of bytes transferred is returned.
* Methods with the extra @a flags argument will always result in
- * <send> getting called. Methods without the extra @a flags
- * argument will result in <send> getting called on Win32
- * platforms, and <write> getting called on non-Win32 platforms.
+ * @c send getting called. Methods without the extra @a flags
+ * argument will result in @c send getting called on Win32
+ * platforms, and @c write getting called on non-Win32 platforms.
*/
class ACE_Export ACE_SOCK_IO : public ACE_SOCK
{
@@ -78,7 +78,7 @@ public:
* buffer to read. This method determines how much data is in the
* socket, allocates a buffer of this size, reads in the data, and
* returns the number of bytes read. The caller is responsible for
- * deleting the member in the <iov_base> field of <io_vec> using
+ * deleting the member in the <iov_base> field of @a io_vec using
* delete [] io_vec->iov_base.
*/
ssize_t recvv (iovec *io_vec,
@@ -88,7 +88,7 @@ public:
ssize_t recv (size_t n,
...) const;
- /// Recv @a n bytes via Win32 <ReadFile> using overlapped I/O.
+ /// Recv @a n bytes via Win32 @c ReadFile using overlapped I/O.
ssize_t recv (void *buf,
size_t n,
ACE_OVERLAPPED *overlapped) const;
@@ -104,7 +104,7 @@ public:
size_t n,
const ACE_Time_Value *timeout = 0) const;
- /// Send an <iovec> of size @a n to the connected socket.
+ /// Send an @c iovec of size @a n to the connected socket.
ssize_t sendv (const iovec iov[],
int n,
const ACE_Time_Value *timeout = 0) const;