/* */ #include "HttpProxyRequestCommand.h" #include "HttpProxyResponseCommand.h" #include "Request.h" #include "Socket.h" #include "DownloadContext.h" namespace aria2 { HttpProxyRequestCommand::HttpProxyRequestCommand (cuid_t cuid, const SharedHandle& req, const SharedHandle& fileEntry, RequestGroup* requestGroup, DownloadEngine* e, const SharedHandle& proxyRequest, const SocketHandle& s) : AbstractProxyRequestCommand(cuid, req, fileEntry, requestGroup, e, proxyRequest, s) {} HttpProxyRequestCommand::~HttpProxyRequestCommand() {} Command* HttpProxyRequestCommand::getNextCommand() { return new HttpProxyResponseCommand (getCuid(), req, _fileEntry, _requestGroup, httpConnection, e, socket); } } // namespace aria2