From: wessels <> Date: Wed, 17 Aug 2005 21:57:26 +0000 (+0000) Subject: cosmetic: clean up some comments X-Git-Tag: SQUID_3_0_PRE4~683 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2afdbf487ae5c88e9b2995fb835ac40baa4f5393;p=thirdparty%2Fsquid.git cosmetic: clean up some comments --- diff --git a/src/http.cc b/src/http.cc index 97fba72236..afb71336b3 100644 --- a/src/http.cc +++ b/src/http.cc @@ -1,6 +1,6 @@ /* - * $Id: http.cc,v 1.451 2005/06/09 16:04:30 serassio Exp $ + * $Id: http.cc,v 1.452 2005/08/17 15:57:26 wessels Exp $ * * DEBUG: section 11 Hypertext Transfer Protocol (HTTP) * AUTHOR: Harvest Derived @@ -862,7 +862,7 @@ HttpStateData::statusIfComplete() const * connection. */ if (!flags.request_sent) { - debug(11, 1) ("httpReadReply: Request not yet fully sent \"%s %s\"\n", + debug(11, 1) ("statusIfComplete: Request not yet fully sent \"%s %s\"\n", RequestMethodStr[orig_request->method], storeUrl(entry)); return COMPLETE_NONPERSISTENT_MSG; @@ -918,9 +918,6 @@ HttpStateData::persistentConnStatus() const return result; } -/* This will be called when data is ready to be read from fd. Read until - * error or connection closed. */ -/* XXX this function is too long! */ static void httpReadReply(int fd, char *buf, size_t len, comm_err_t flag, int xerrno,void *data) { @@ -931,6 +928,9 @@ httpReadReply(int fd, char *buf, size_t len, comm_err_t flag, int xerrno,void *d PROF_stop(HttpStateData_readReply); } +/* This will be called when data is ready to be read from fd. Read until + * error or connection closed. */ +/* XXX this function is too long! */ void HttpStateData::readReply (int fd, char *readBuf, size_t len, comm_err_t flag, int xerrno,void *data) {