diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-09-18 05:50:48 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-09-18 05:50:48 +0000 |
commit | b3eab516c833716db9dda1758189aafc7f20f386 (patch) | |
tree | a9e6c2de2e539483a58595e85940a74156e45a87 /ace/ACE.h | |
parent | bace4247479755e955f23648b56128e23b7a8dd1 (diff) | |
download | ATCD-b3eab516c833716db9dda1758189aafc7f20f386.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/ACE.h')
-rw-r--r-- | ace/ACE.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ace/ACE.h b/ace/ACE.h index 83227c217c7..fa207ba6d14 100644 --- a/ace/ACE.h +++ b/ace/ACE.h @@ -264,6 +264,12 @@ public: // returned with <errno == ETIME>. If it succeeds the number of // bytes receieved is returned. + static ssize_t send (ACE_HANDLE handle, size_t n, ...); + // Send varargs messages to the <handle> using <writev>. + + static ssize_t recv (ACE_HANDLE handle, size_t n, ...); + // Recv varargs messages to the <handle> using <readv>. + // = File system I/O functions. // These encapsulate differences between UNIX and Win32 and also |