From: wessels <> Date: Wed, 8 Mar 2006 01:44:12 +0000 (+0000) Subject: Removing unused 'HttpStateData::SendRequestEntityDoneWrapper' method X-Git-Tag: SQUID_3_0_PRE4~301 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=de361efbe0c31e2b9d9be0f9f9d29d99b09f0ce0;p=thirdparty%2Fsquid.git Removing unused 'HttpStateData::SendRequestEntityDoneWrapper' method --- diff --git a/src/http.cc b/src/http.cc index 2ce88d7d29..e9f7061f7e 100644 --- a/src/http.cc +++ b/src/http.cc @@ -1,6 +1,6 @@ /* - * $Id: http.cc,v 1.489 2006/03/02 20:46:03 wessels Exp $ + * $Id: http.cc,v 1.490 2006/03/07 18:44:12 wessels Exp $ * * DEBUG: section 11 Hypertext Transfer Protocol (HTTP) * AUTHOR: Harvest Derived @@ -1824,13 +1824,6 @@ httpStart(FwdState *fwd) */ } -void -HttpStateData::SendRequestEntityDoneWrapper(int fd, void *data) -{ - HttpStateData *httpState = static_cast(data); - httpState->sendRequestEntityDone(fd); -} - void HttpStateData::sendRequestEntityDone(int fd) { diff --git a/src/http.h b/src/http.h index 58b054522f..1b7132e950 100644 --- a/src/http.h +++ b/src/http.h @@ -1,6 +1,6 @@ /* - * $Id: http.h,v 1.21 2006/01/25 23:59:46 wessels Exp $ + * $Id: http.h,v 1.22 2006/03/07 18:44:12 wessels Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -57,7 +57,6 @@ public: static CWCB SendComplete; static CWCB SendRequestEntityWrapper; static IOCB ReadReplyWrapper; - static PF SendRequestEntityDoneWrapper; static CBCB RequestBodyHandlerWrapper; static void httpBuildRequestHeader(HttpRequest * request, HttpRequest * orig_request,