/*
- * $Id: Server.cc,v 1.15 2007/07/19 12:07:41 hno Exp $
+ * $Id: Server.cc,v 1.16 2007/07/23 16:55:31 rousskov Exp $
*
* DEBUG:
* AUTHOR: Duane Wessels
#endif
void
-ServerStateData::setReply(HttpReply *reply)
+ServerStateData::setReply()
{
- this->reply = reply;
-
#if ICAP_CLIENT
if (TheICAPConfig.onoff) {
/*
- * $Id: Server.h,v 1.6 2007/07/19 12:07:41 hno Exp $
+ * $Id: Server.h,v 1.7 2007/07/23 16:55:31 rousskov Exp $
*
* AUTHOR: Duane Wessels
*
protected:
// Kids use these to stuff data into the response instead of messing with the entry directly
- void setReply(HttpReply *);
+ void setReply();
void addReplyBody(const char *buf, ssize_t len);
size_t replyBodySpace(size_t space = 4096 * 10);
/*
- * $Id: ftp.cc,v 1.429 2007/07/19 12:07:41 hno Exp $
+ * $Id: ftp.cc,v 1.430 2007/07/23 16:55:31 rousskov Exp $
*
* DEBUG: section 9 File Transfer Protocol (FTP)
* AUTHOR: Harvest Derived
if (mime_enc)
reply->header.putStr(HDR_CONTENT_ENCODING, mime_enc);
- setReply(reply);
+ setReply();
}
void
/*
- * $Id: http.cc,v 1.532 2007/07/19 12:07:41 hno Exp $
+ * $Id: http.cc,v 1.533 2007/07/23 16:55:31 rousskov Exp $
*
* DEBUG: section 11 Hypertext Transfer Protocol (HTTP)
* AUTHOR: Harvest Derived
* Parse the header and remove all referenced headers
*/
- setReply(reply);
+ setReply();
ctx_exit(ctx);