diff options
Diffstat (limited to 'ace/SOCK_Stream.h')
-rw-r--r-- | ace/SOCK_Stream.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ace/SOCK_Stream.h b/ace/SOCK_Stream.h index 705078d55d4..d07d332c93f 100644 --- a/ace/SOCK_Stream.h +++ b/ace/SOCK_Stream.h @@ -30,6 +30,10 @@ class ACE_Export ACE_SOCK_Stream : public ACE_SOCK_IO // This adds additional wrapper methods atop the <ACE_SOCK_IO> // class. public: + ACE_SOCK_Stream (void); + ~ACE_SOCK_Stream (void); + // Default ctor/dtor. + //= 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. |