/* */ #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, const RequestHandle req, DownloadEngine* e, const SocketHandle& s); ~FtpTunnelResponseCommand(); }; #endif // _D_FTP_TUNNEL_RESPONSE_COMMAND_H_