/* */ #ifndef _D_FTP_TUNNEL_RESPONSE_COMMAND_H_ #define _D_FTP_TUNNEL_RESPONSE_COMMAND_H_ #include "AbstractCommand.h" #include "HttpConnection.h" class FtpTunnelResponseCommand : public AbstractCommand { private: HttpConnection* http; protected: bool executeInternal(Segment segment); public: FtpTunnelResponseCommand(int cuid, Request* req, DownloadEngine* e, const Socket* s); ~FtpTunnelResponseCommand(); }; #endif // _D_FTP_TUNNEL_RESPONSE_COMMAND_H_