summaryrefslogtreecommitdiff
path: root/ace/SOCK_Stream.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1996-10-27 21:44:14 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1996-10-27 21:44:14 +0000
commit0cc5504a5c8a958101a09accb21c135281d5e9ff (patch)
treea38b7d21b5f25b5ef5548a423339c747f056059c /ace/SOCK_Stream.h
parent997479406012dab3e5e787d3a724bf5f2fd2b04c (diff)
downloadATCD-0cc5504a5c8a958101a09accb21c135281d5e9ff.tar.gz
Jamming!
Diffstat (limited to 'ace/SOCK_Stream.h')
-rw-r--r--ace/SOCK_Stream.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/ace/SOCK_Stream.h b/ace/SOCK_Stream.h
index 3eceece50c2..cde111fc63a 100644
--- a/ace/SOCK_Stream.h
+++ b/ace/SOCK_Stream.h
@@ -29,16 +29,13 @@ class ACE_Export ACE_SOCK_Stream : public ACE_SOCK_IO
// This adds additional wrapper methods atop the <ACE_SOCK_IO> class.
{
public:
- //= The following two methods use write and read system calls,
- //= which are faster than the send and recv library functions
- //= used by the following two methods.
+ //= The following two methods use write and read system calls.
ssize_t send_n (const void *buf, int n) const;
// Send n bytes, keep trying until n are sent.
ssize_t recv_n (void *buf, int n) const;
// Recv n bytes, keep trying until n are received.
- // = The following two methods use the send and recv system
- // = calls.
+ // = The following two methods use the send and recv system calls.
ssize_t send_n (const void *buf, int n, int flags) const;
// Send n bytes, keep trying until n are sent.
ssize_t recv_n (void *buf, int n, int flags) const;