]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Polished for trunk merge
authorAlex Rousskov <rousskov@measurement-factory.com>
Sat, 5 Apr 2008 05:16:03 +0000 (23:16 -0600)
committerAlex Rousskov <rousskov@measurement-factory.com>
Sat, 5 Apr 2008 05:16:03 +0000 (23:16 -0600)
.bzrignore
Makefile.am
SPONSORS
src/ICAP/ICAPElements.cc
src/ICAP/ICAPServiceRep.cc
src/adaptation/Initiate.cc

index 4bad7a94e2fc24138ddda3aaeb18ec641bf3c715..73d0265407e6df521074841f17dc0f1916441e81 100644 (file)
@@ -1,49 +1,55 @@
-autom4te.cache
-config.log
-config.status
-autom4te*
-stamp-h1
-libtool
-configure.lineno
-cfgaux
-*.patch
-icons/*.gif
-tags
-tmp
-.deps
-.libs
-.dirstamp
 *.la
 *.lo
 *.loT
+*.patch
+*/*/*/Makefile
+*/Makefile
 */globals.cc
+.deps
+.dirstamp
+.libs
+Makefile
 Makefile.in
 aclocal.m4
-install-sh
-missing
+autoconf.h.in
+autom4te*
+autom4te.cache
+cfgaux
+config.h.in
+config.log
+config.status
 configure
+configure.lineno
 depcomp
-lib/libLtdl
-lib/**/config.h
-Makefile
-*/Makefile
-*/*/*/Makefile
-scr/**/Makefile
-lib/**/Makefile
+doc/*.8
+doc/Programming-Guide/html
+helpers/**/*_auth
+helpers/*/*/Makefile
+helpers/*/Makefile
 helpers/basic_auth/**/Makefile
 helpers/digest_auth/**/Makefile
 helpers/external_acl/**/Makefile
-helpers/ntlm_auth/**/Makefile
-helpers/negotiate_auth/Makefile
-doc/*.8
-helpers/**/*_auth
 helpers/external_acl/ip_user/ip_user_check
 helpers/external_acl/session/squid_session
 helpers/external_acl/unix_group/squid_unix_group
+helpers/negotiate_auth/Makefile
+helpers/ntlm_auth/**/Makefile
+icons/*.gif
 include/autoconf.h
 include/stamp-h1
+install-sh
+lib/**/Makefile
+lib/**/config.h
+lib/libLtdl
+libtool
+missing
+scr/**/Makefile
+scripts/Makefile
 scripts/RunAccel
 scripts/RunCache
+snmplib/Makefile
+src/*/Makefile
+src/DiskIO/DiskDaemon/diskd
 src/cf.data
 src/cf_gen
 src/cf_gen_defines.h
@@ -55,18 +61,12 @@ src/squid.conf.default
 src/string_arrays.c
 src/ufsdump
 src/unlinkd
-src/DiskIO/DiskDaemon/diskd
-tools/cachemgr.cgi
-tools/squidclient
-config.h.in
 stamp-h.in
-autoconf.h.in
-testHeaders
-doc/Programming-Guide/html
-helpers/*/Makefile
-helpers/*/*/Makefile
-scripts/Makefile
-snmplib/Makefile
-src/*/Makefile
+stamp-h1
+tags
 test-suite/Makefile
+testHeaders
+tmp
 tools/Makefile
+tools/cachemgr.cgi
+tools/squidclient
index 4b58783d29f4918e5d40c8d7e2dda96539932a5b..b3290881a186735ebac68ca0eb2c6b7b79b0b8a5 100644 (file)
@@ -4,11 +4,9 @@
 #
 
 AUTOMAKE_OPTIONS = dist-bzip2 subdir-objects 1.5 foreign
-
 DIST_SUBDIRS   = lib snmplib scripts src icons errors contrib doc helpers test-suite tools
 SUBDIRS                = lib @makesnmplib@ scripts src icons errors doc helpers test-suite tools
 
-
 DISTCLEANFILES = include/stamp-h include/stamp-h[0-9]*
 DEFAULT_PINGER         = $(libexecdir)/`echo pinger | sed '$(transform);s/$$/$(EXEEXT)/'`
 
index 4f5376ec721baf17eaaa4ad46737b81e35f7860a..b99f5a03484a78eb4b3124de9904ff97fc65cf16 100644 (file)
--- a/SPONSORS
+++ b/SPONSORS
@@ -58,10 +58,6 @@ iiNet Ltd - http://www.iinet.net.au/
         recently supplied equipment to help develop and test the WCCPv2
         implementation in Squid-2.6 and Squid-3.
 
-Barefruit - http://www.barefruit.com/
-
-       Barefruit has funded Squid3 development and maintenance,
-       with a focus on content adaptation (ICAP and eCAP) support.
 Kaspersky Lab - http://www.kaspersky.com/
 
        Kaspersky Lab funded initial development of ICAP support in
@@ -70,7 +66,7 @@ Kaspersky Lab - http://www.kaspersky.com/
 Barefruit - http://www.barefruit.com/
 
        Barefruit has funded Squid3 development and maintenance,
-       with a focus on the ICAP client support.
+       with a focus on content adaptation (ICAP and eCAP) support.
 
 Palisade Systems - http://www.palisadesys.com/
 
index 7aa5968c25ceb23a5e98611606f25f1f896664fa..8dad155cbfd8ebf94287c514ec75ade8924fe9b3 100644 (file)
@@ -1,55 +1,4 @@
 #include "squid.h"
 #include "ICAPElements.h"
 
-#if 0 /* XXX: remove this file */
-
-const char *ICAP::crlf = "\r\n";
-
-
-const char *
-ICAP::methodStr(ICAP::Method method)
-{
-    switch(method) {
-
-    case ICAP::methodReqmod:
-        return "REQMOD";
-        break;
-
-    case ICAP::methodRespmod:
-        return "RESPMOD";
-        break;
-
-    case ICAP::methodOptions:
-        return "OPTIONS";
-        break;
-
-    default:
-        break;
-    }
-
-    return "NONE";
-}
-
-
-const char *
-ICAP::vectPointStr(ICAP::VectPoint point)
-{
-    switch(point) {
-
-    case ICAP::pointPreCache:
-        return "PRECACHE";
-        break;
-
-    case ICAP::pointPostCache:
-        return "POSTCACHE";
-        break;
-
-    default:
-        break;
-    }
-
-    return "NONE";
-}
-
-
-#endif /* if 0 -- remove this file */
+// TODO: remove this file?
index c8de132f4340e2d8393a0916445af01fb01ef6b6..e63c81a5ea2747adc586923871fb7d1448943df5 100644 (file)
@@ -358,7 +358,7 @@ void ICAPServiceRep::startGettingOptions()
     Must(!theOptionsFetcher);
     debugs(93,6, "ICAPService will get new options " << status());
 
-    // XXX: check whether it is safe to use self as "this"
+    // XXX: second "this" is "self"; this works but may stop if API changes
     theOptionsFetcher = initiateAdaptation(new ICAPOptXactLauncher(this, this));
     Must(theOptionsFetcher);
     // TODO: timeout in case ICAPOptXact never calls us back?
index d9652aff50bbdb19261fd2b289c4bdd5661c9cbb..57a4ca9ed2cd1c8aac8b2b109476469f74669677 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * DEBUG: section 93  ADAPT (RFC 3507) Client
+ * DEBUG: section 93  ICAP (RFC 3507) Client
  */
 
 #include "squid.h"