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