make socket parameter in *Command contructor const

This commit is contained in:
Tatsuhiro Tsujikawa 2006-03-31 14:46:48 +00:00
parent e6e0177560
commit 133f759a0d
30 changed files with 28 additions and 39 deletions

View file

@ -31,7 +31,7 @@ private:
protected:
bool executeInternal(Segment segment);
public:
HttpProxyResponseCommand(int cuid, Request* req, DownloadEngine* e, Socket* s);
HttpProxyResponseCommand(int cuid, Request* req, DownloadEngine* e, const Socket* s);
~HttpProxyResponseCommand();
};