/* */ #ifndef _D_FTP_TUNNEL_RESPONSE_COMMAND_H_ #define _D_FTP_TUNNEL_RESPONSE_COMMAND_H_ #include "AbstractProxyResponseCommand.h" namespace aria2 { class SocketCore; class FtpTunnelResponseCommand : public AbstractProxyResponseCommand { public: FtpTunnelResponseCommand(int cuid, const SharedHandle& req, RequestGroup* requestGroup, const SharedHandle& httpConnection, DownloadEngine* e, const SharedHandle& s); virtual ~FtpTunnelResponseCommand(); virtual Command* getNextCommand(); }; } // namespace aria2 #endif // _D_FTP_TUNNEL_RESPONSE_COMMAND_H_