From: Alex Rousskov Date: Sun, 30 Mar 2008 19:48:34 +0000 (-0600) Subject: Renamed types and members after moving adaptation-method-agnostic APIs to the X-Git-Tag: SQUID_3_1_0_1~49^2~302^2~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=462e63d38da0a57b064fc0f79f875ae4e885414d;p=thirdparty%2Fsquid.git Renamed types and members after moving adaptation-method-agnostic APIs to the Adaptation namespace and adding support for delayed adaptation service creation. --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index d3c708144c..91cfa1a14a 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -3430,55 +3430,55 @@ free_access_log(customlog ** definitions) static void parse_icap_service_type(ICAPConfig * cfg) { - cfg->parseICAPService(); + cfg->parseService(); } static void free_icap_service_type(ICAPConfig * cfg) { - cfg->freeICAPService(); + cfg->freeService(); } static void dump_icap_service_type(StoreEntry * entry, const char *name, const ICAPConfig &cfg) { - cfg.dumpICAPService(entry, name); + cfg.dumpService(entry, name); } static void parse_icap_class_type(ICAPConfig * cfg) { - cfg->parseICAPClass(); + cfg->parseClass(); } static void free_icap_class_type(ICAPConfig * cfg) { - cfg->freeICAPClass(); + cfg->freeClass(); } static void dump_icap_class_type(StoreEntry * entry, const char *name, const ICAPConfig &cfg) { - cfg.dumpICAPClass(entry, name); + cfg.dumpClass(entry, name); } static void parse_icap_access_type(ICAPConfig * cfg) { - cfg->parseICAPAccess(LegacyParser); + cfg->parseAccess(LegacyParser); } static void free_icap_access_type(ICAPConfig * cfg) { - cfg->freeICAPAccess(); + cfg->freeAccess(); } static void dump_icap_access_type(StoreEntry * entry, const char *name, const ICAPConfig &cfg) { - cfg.dumpICAPAccess(entry, name); + cfg.dumpAccess(entry, name); } #endif