Public Member Functions | |
My_FTP_RequestHandler () | |
virtual | ~My_FTP_RequestHandler () |
Protected Member Functions | |
virtual void | handle_request_error (const ACE::FTP::URL &url) |
virtual void | handle_connection_error (const ACE::FTP::URL &url) |
virtual void | after_read (const char_type *, int length_read) |
virtual void | on_eof () |
Private Attributes | |
int | read_length_ |
Definition at line 99 of file FTP_Simple_exec.cpp.
My_FTP_RequestHandler::My_FTP_RequestHandler | ( | ) | [inline] |
Definition at line 103 of file FTP_Simple_exec.cpp.
: read_length_ (0) {}
virtual My_FTP_RequestHandler::~My_FTP_RequestHandler | ( | ) | [inline, virtual] |
Definition at line 104 of file FTP_Simple_exec.cpp.
{}
virtual void My_FTP_RequestHandler::after_read | ( | const char_type * | , | |
int | length_read | |||
) | [inline, protected, virtual] |
Reimplemented from ACE::IOS::StreamInterceptorBase< ACE_CHAR_T, TR >.
Definition at line 119 of file FTP_Simple_exec.cpp.
{ this->read_length_ += length_read; std::cout << "\r [" << this->read_length_ << "/???]"; }
virtual void My_FTP_RequestHandler::handle_connection_error | ( | const ACE::FTP::URL & | url | ) | [inline, protected, virtual] |
Reimplemented from ACE::FTP::ClientRequestHandler.
Definition at line 113 of file FTP_Simple_exec.cpp.
virtual void My_FTP_RequestHandler::handle_request_error | ( | const ACE::FTP::URL & | url | ) | [inline, protected, virtual] |
Reimplemented from ACE::FTP::ClientRequestHandler.
Definition at line 107 of file FTP_Simple_exec.cpp.
virtual void My_FTP_RequestHandler::on_eof | ( | void | ) | [inline, protected, virtual] |
Reimplemented from ACE::FTP::ClientRequestHandler.
Definition at line 125 of file FTP_Simple_exec.cpp.
{ ACE::FTP::ClientRequestHandler::on_eof (); std::cout << std::endl; }
int My_FTP_RequestHandler::read_length_ [private] |
Definition at line 132 of file FTP_Simple_exec.cpp.