/* */ #include "HttpProxyResponseCommand.h" #include "HttpRequestCommand.h" #include "Request.h" #include "HttpConnection.h" #include "HttpRequest.h" #include "Segment.h" #include "Socket.h" #include "SocketRecvBuffer.h" namespace aria2 { HttpProxyResponseCommand::HttpProxyResponseCommand (cuid_t cuid, const SharedHandle& 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(getCuid(), getRequest(), getFileEntry(), getRequestGroup(), getHttpConnection(), getDownloadEngine(), getSocket()); } } // namespace aria2