/* */ #include "HttpProxyRequestCommand.h" #include "HttpProxyResponseCommand.h" #include "Request.h" #include "SocketCore.h" #include "SocketRecvBuffer.h" namespace aria2 { HttpProxyRequestCommand::HttpProxyRequestCommand (cuid_t cuid, const SharedHandle& req, const SharedHandle& fileEntry, RequestGroup* requestGroup, DownloadEngine* e, const SharedHandle& proxyRequest, const SharedHandle& s) : AbstractProxyRequestCommand(cuid, req, fileEntry, requestGroup, e, proxyRequest, s) {} HttpProxyRequestCommand::~HttpProxyRequestCommand() {} Command* HttpProxyRequestCommand::getNextCommand() { return new HttpProxyResponseCommand (getCuid(), getRequest(), getFileEntry(), getRequestGroup(), getHttpConnection(), getDownloadEngine(), getSocket()); } } // namespace aria2