/* */ #include "FtpTunnelResponseCommand.h" #include "FtpNegotiationCommand.h" #include "Request.h" #include "HttpConnection.h" #include "HttpRequest.h" #include "Segment.h" #include "Socket.h" #include "SocketRecvBuffer.h" namespace aria2 { FtpTunnelResponseCommand::FtpTunnelResponseCommand (cuid_t cuid, const SharedHandle& req, const SharedHandle& fileEntry, RequestGroup* requestGroup, const HttpConnectionHandle& httpConnection, DownloadEngine* e, const SocketHandle& s) :AbstractProxyResponseCommand(cuid, req, fileEntry, requestGroup, httpConnection,e, s) {} FtpTunnelResponseCommand::~FtpTunnelResponseCommand() {} Command* FtpTunnelResponseCommand::getNextCommand() { return new FtpNegotiationCommand(getCuid(), getRequest(), getFileEntry(), getRequestGroup(), getDownloadEngine(), getSocket()); } } // namespace aria2