diff options
Diffstat (limited to 'ace/SOCK_IO.h')
-rw-r--r-- | ace/SOCK_IO.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/SOCK_IO.h b/ace/SOCK_IO.h index 19b45e6c083..ff4b0e65237 100644 --- a/ace/SOCK_IO.h +++ b/ace/SOCK_IO.h @@ -59,12 +59,12 @@ public: // Recv an <n> byte buffer from the connected socket (uses // <read(2)>). - ssize_t sendv (const iovec iov[], + ssize_t send (const iovec iov[], size_t n) const; // Send an <iovec> of size <n> to the connected socket. - ssize_t recvv (iovec *io_vec, - const ACE_Time_Value *timeout = 0); + ssize_t recv (iovec *io_vec, + const ACE_Time_Value *timeout = 0); // Allows a client to read from a socket without having to provide a // buffer to read. This method determines how much data is in the // socket, allocates a buffer of this size, reads in the data, and |