/* */ #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( cuid_t cuid, const std::shared_ptr& req, const std::shared_ptr& fileEntry, RequestGroup* requestGroup, const std::shared_ptr& httpConnection, DownloadEngine* e, const std::shared_ptr& s); virtual ~FtpTunnelResponseCommand(); virtual std::unique_ptr getNextCommand() CXX11_OVERRIDE; }; } // namespace aria2 #endif // D_FTP_TUNNEL_RESPONSE_COMMAND_H