#include <ace/SOCK_IO.h>
class ACE_SOCK_IO : public ACE_SOCK {
public:
ssize_t send (const void *buf, size_t n, int flags) const;
ssize_t recv (void *buf, size_t n, int flags) const;
ssize_t send (const void *buf, size_t n) const;
ssize_t recv (void *buf, size_t n) const;
ssize_t send (const iovec iov[], size_t n) const;
ssize_t recv (iovec iov[], size_t n) const;
ssize_t send ( const void *buf, size_t n, int flags, const ACE_Time_Value *timeout );
ssize_t recv ( void *buf, size_t n, int flags, const ACE_Time_Value *timeout );
ssize_t send (size_t n, ...) const;
ssize_t recv (size_t n, ...) const;
ssize_t send ( const void *buf, size_t n, ACE_OVERLAPPED *overlapped ) const;
ssize_t recv ( void *buf, size_t n, ACE_OVERLAPPED *overlapped ) const;
ssize_t recv (iovec *io_vec);
void dump (void) const;
ACE_ALLOC_HOOK_DECLARE;
};
ssize_t send (const void *buf, size_t n, int flags) const;
n
byte buffer to the connected socket (uses
send(3n)
).
ssize_t recv (void *buf, size_t n, int flags) const;
n
byte buffer from the connected socket (uses
recv(3n)
).
ssize_t send (const void *buf, size_t n) const;
n
byte buffer to the connected socket (uses
write(2)
).
ssize_t recv (void *buf, size_t n) const;
n
byte buffer from the connected socket (uses
read(2)
).
ssize_t send (const iovec iov[], size_t n) const;
n
byte messages to the connected socket.
ssize_t recv (iovec iov[], size_t n) const;
n
byte messages to the connected socket.
ssize_t send (
const void *buf,
size_t n,
int flags,
const ACE_Time_Value *timeout
);
timeout
amount of time to send up to n
bytes into
buf
from handle
(uses the send
call). If send
times out
a -1 is returned with errno == ETIME
. If it succeeds the
number of bytes sent is returned.
ssize_t recv (
void *buf,
size_t n,
int flags,
const ACE_Time_Value *timeout
);
timeout
amount of time to receive up to n
bytes
into buf
from handle
(uses the recv
call). If recv
times
out a -1 is returned with errno == ETIME
. If it succeeds the
number of bytes received is returned.
ssize_t send (size_t n, ...) const;
n
varargs messages to the connected socket.
ssize_t recv (size_t n, ...) const;
n
varargs messages to the connected socket.
ssize_t send (
const void *buf,
size_t n,
ACE_OVERLAPPED *overlapped
) const;
n
bytes via Win32 WriteFile using overlapped I/O.
ssize_t recv (void *buf, size_t n, ACE_OVERLAPPED *overlapped) const;
n
bytes via Win32 ReadFile using overlapped I/O.
ssize_t recv (iovec *io_vec);
iov_base
field of io_vec
.
void dump (void) const;
ACE_ALLOC_HOOK_DECLARE;