summaryrefslogtreecommitdiff
path: root/ace/Asynch_IO.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-06-21 01:55:06 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-06-21 01:55:06 +0000
commit6d60adf2d886974d61a913f110bfce7f09ff8cd6 (patch)
treee45ae872188edeaaccc39e253f2d403289271e53 /ace/Asynch_IO.h
parentb5a972bd3eafea8e44374135c092d2653b103c69 (diff)
downloadATCD-6d60adf2d886974d61a913f110bfce7f09ff8cd6.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Asynch_IO.h')
-rw-r--r--ace/Asynch_IO.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/ace/Asynch_IO.h b/ace/Asynch_IO.h
index 9053ffaac5c..01766b30bff 100644
--- a/ace/Asynch_IO.h
+++ b/ace/Asynch_IO.h
@@ -597,7 +597,7 @@ public:
// Forward declaration.
ACE_Asynch_Transmit_File (void);
- // A do nothing constructor.
+ // A "do-nothing" constructor.
int transmit_file (ACE_HANDLE file,
Header_And_Trailer *header_and_trailer = 0,
@@ -880,6 +880,7 @@ public:
int transmit (void);
// Do the transmission. All the info to do the transmission is in
// the <result> member.
+
protected:
virtual void handle_write_stream (const ACE_Asynch_Write_Stream::Result &result);
// This is called when asynchronous writes from the socket complete.
@@ -909,9 +910,10 @@ private:
DATA_ACT = 2,
TRAILER_ACT = 3
};
- ACT * header_act_;
- ACT * data_act_;
- ACT * trailer_act_;
+
+ ACT *header_act_;
+ ACT *data_act_;
+ ACT *trailer_act_;
// ACT to transmit header, data and trailer.
size_t file_offset_;