/* */ #ifndef _D_HTTP_PROXY_RESPONSE_COMMAND_H_ #define _D_HTTP_PROXY_RESPONSE_COMMAND_H_ #include "AbstractProxyResponseCommand.h" namespace aria2 { class SocketCore; class HttpProxyResponseCommand : public AbstractProxyResponseCommand { public: HttpProxyResponseCommand(cuid_t cuid, const SharedHandle& req, const SharedHandle& fileEntry, RequestGroup* requestGroup, const SharedHandle& httpConnection, DownloadEngine* e, const SharedHandle& s); virtual ~HttpProxyResponseCommand(); virtual Command* getNextCommand(); }; } // namespace aria2 #endif // _D_HTTP_PROXY_RESPONSE_COMMAND_H_