From: Francesco Chemolli Date: Wed, 29 Aug 2012 11:37:22 +0000 (+0200) Subject: Moved httpHdrMangleList prototype to HttpHeaderTools.h X-Git-Tag: sourceformat-review-1~59 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f01162cf736f77d2dfabcc4db13872686e8b8b40;p=thirdparty%2Fsquid.git Moved httpHdrMangleList prototype to HttpHeaderTools.h --- diff --git a/src/HttpHeaderTools.h b/src/HttpHeaderTools.h index e7678649b4..f6a051d589 100644 --- a/src/HttpHeaderTools.h +++ b/src/HttpHeaderTools.h @@ -96,6 +96,8 @@ extern int httpHeaderParseOffset(const char *start, int64_t * off); class HttpHeaderFieldInfo; class String; +class HttpHeader; +class HttpRequest; extern HttpHeaderFieldInfo *httpHeaderBuildFieldsInfo(const HttpHeaderFieldAttrs * attrs, int count); extern void httpHeaderDestroyFieldsInfo(HttpHeaderFieldInfo * info, int count); @@ -108,4 +110,7 @@ extern void httpHeaderPutStrf(HttpHeader * hdr, http_hdr_type id, const char *fm extern const char *getStringPrefix(const char *str, const char *end); +extern void httpHdrMangleList(HttpHeader *, HttpRequest *, int req_or_rep); + + #endif diff --git a/src/protos.h b/src/protos.h index 44aa16cbde..0528eb3750 100644 --- a/src/protos.h +++ b/src/protos.h @@ -56,8 +56,6 @@ class HttpRequest; class HttpReply; -SQUIDCEXTERN void httpHdrMangleList(HttpHeader *, HttpRequest *, int req_or_rep); - #if SQUID_SNMP SQUIDCEXTERN PF snmpHandleUdp; SQUIDCEXTERN void snmpInit(void);