/* */ #ifndef _D_HTTP_PROXY_REQUEST_COMMAND_H_ #define _D_HTTP_PROXY_REQUEST_COMMAND_H_ #include "AbstractCommand.h" class HttpProxyRequestCommand : public AbstractCommand { protected: bool executeInternal(Segment segment); public: HttpProxyRequestCommand(int cuid, Request* req, DownloadEngine* e, const Socket* s); ~HttpProxyRequestCommand(); }; #endif // _D_HTTP_PROXY_REQUEST_COMMAND_H_