/* */ #include "HttpProxyResponseCommand.h" #include "HttpRequestCommand.h" #include "Request.h" #include "HttpConnection.h" #include "HttpRequest.h" #include "Segment.h" #include "SocketCore.h" #include "SocketRecvBuffer.h" namespace aria2 { HttpProxyResponseCommand::HttpProxyResponseCommand( cuid_t cuid, const std::shared_ptr& req, const std::shared_ptr& fileEntry, RequestGroup* requestGroup, const std::shared_ptr& httpConnection, DownloadEngine* e, const std::shared_ptr& s) : AbstractProxyResponseCommand(cuid, req, fileEntry, requestGroup, httpConnection, e, s) { } HttpProxyResponseCommand::~HttpProxyResponseCommand() = default; std::unique_ptr HttpProxyResponseCommand::getNextCommand() { return make_unique( getCuid(), getRequest(), getFileEntry(), getRequestGroup(), getHttpConnection(), getDownloadEngine(), getSocket()); } } // namespace aria2