summaryrefslogtreecommitdiff
path: root/ACE/ace/SOCK_Dgram.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-02-15 13:51:31 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-02-15 13:51:31 +0000
commitef4d0556821999199d16f52b368c4a090902698b (patch)
tree5a7e02c8e07d521fc68afb7e547e7f0cc18af845 /ACE/ace/SOCK_Dgram.h
parent4c1ec894e4845156036937d1e4dbfcae3fd6f3f3 (diff)
downloadATCD-ef4d0556821999199d16f52b368c4a090902698b.tar.gz
Thu Feb 15 13:50:58 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/SOCK_Dgram.h')
-rw-r--r--ACE/ace/SOCK_Dgram.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/ACE/ace/SOCK_Dgram.h b/ACE/ace/SOCK_Dgram.h
index dc45f8c5c27..23dc687eba1 100644
--- a/ACE/ace/SOCK_Dgram.h
+++ b/ACE/ace/SOCK_Dgram.h
@@ -84,13 +84,13 @@ public:
~ACE_SOCK_Dgram (void);
// = Data transfer routines.
- /// Send an <n> byte <buf> to the datagram socket (uses <sendto(3)>).
+ /// Send an @a n byte @a buf to the datagram socket (uses <sendto(3)>).
ssize_t send (const void *buf,
size_t n,
const ACE_Addr &addr,
int flags = 0) const;
- /// Receive an <n> byte <buf> from the datagram socket (uses
+ /// Receive an @a n byte @a buf from the datagram socket (uses
/// <recvfrom(3)>).
ssize_t recv (void *buf,
size_t n,
@@ -110,14 +110,14 @@ public:
int flags = 0,
const ACE_Time_Value *timeout = 0) const;
- /// Send an <iovec> of size <n> to the datagram socket (uses
+ /// Send an <iovec> of size @a n to the datagram socket (uses
/// <sendmsg(3)>).
ssize_t send (const iovec iov[],
int n,
const ACE_Addr &addr,
int flags = 0) const;
- /// Recv an <iovec> of size <n> to the datagram socket (uses
+ /// Recv an <iovec> of size @a n to the datagram socket (uses
/// <recvmsg(3)>).
ssize_t recv (iovec iov[],
int n,
@@ -126,7 +126,7 @@ public:
/**
* Wait up to @a timeout amount of time to receive a datagram into
- * <buf>. The ACE_Time_Value indicates how long to blocking
+ * @a buf. The ACE_Time_Value indicates how long to blocking
* trying to receive. If @a timeout == 0, the caller will block
* until action is possible, else will wait until the relative time
* specified in *@a timeout elapses). If <recv> times out a -1 is
@@ -141,7 +141,7 @@ public:
/**
* Wait up to @a timeout amount of time to send a datagram to
- * <buf>. The ACE_Time_Value indicates how long to blocking
+ * @a buf. The ACE_Time_Value indicates how long to blocking
* trying to receive. If @a timeout == 0, the caller will block
* until action is possible, else will wait until the relative time
* specified in *@a timeout elapses). If <send> times out a -1 is
@@ -174,7 +174,7 @@ public:
ACE_OVERLAPPED *overlapped,
ACE_OVERLAPPED_COMPLETION_FUNC func) const;
- /// Send an <n> byte <buf> to the datagram socket (uses <WSASendTo>).
+ /// Send an @a n byte @a buf to the datagram socket (uses <WSASendTo>).
ssize_t send (const void *buf,
size_t n,
const ACE_Addr &addr,
@@ -182,7 +182,7 @@ public:
ACE_OVERLAPPED *overlapped,
ACE_OVERLAPPED_COMPLETION_FUNC func) const;
- /// Receive an <n> byte <buf> from the datagram socket (uses
+ /// Receive an @a n byte @a buf from the datagram socket (uses
/// <WSARecvFrom>).
ssize_t recv (void *buf,
size_t n,