/* */ #include "FtpTunnelResponseCommand.h" #include "FtpNegotiationCommand.h" 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); }