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