/* */ #include "FtpTunnelResponseCommand.h" #include "FtpNegotiationCommand.h" #include "Request.h" #include "HttpConnection.h" #include "HttpRequest.h" #include "Segment.h" #include "Socket.h" namespace aria2 { FtpTunnelResponseCommand::FtpTunnelResponseCommand(int cuid, const RequestHandle& req, RequestGroup* requestGroup, const HttpConnectionHandle& httpConnection, DownloadEngine* e, const SocketHandle& s) :AbstractProxyResponseCommand(cuid, req, requestGroup, httpConnection,e, s) {} FtpTunnelResponseCommand::~FtpTunnelResponseCommand() {} Command* FtpTunnelResponseCommand::getNextCommand() { return new FtpNegotiationCommand(cuid, req, _requestGroup, e, socket); } } // namespace aria2