Repository: trafficserver Updated Branches: refs/heads/master fe45f42fa -> 65b5917aa
TS-3036 Fix lookup table Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/65b5917a Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/65b5917a Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/65b5917a Branch: refs/heads/master Commit: 65b5917aac7e7461b65ffdedf956c986ff0e333b Parents: fe45f42 Author: Leif Hedstrom <[email protected]> Authored: Mon Mar 16 08:51:46 2015 -0600 Committer: Leif Hedstrom <[email protected]> Committed: Mon Mar 16 08:51:46 2015 -0600 ---------------------------------------------------------------------- proxy/hdrs/HTTP.h | 1 - proxy/logging/Log.cc | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/65b5917a/proxy/hdrs/HTTP.h ---------------------------------------------------------------------- diff --git a/proxy/hdrs/HTTP.h b/proxy/hdrs/HTTP.h index 0f5daff..7abf20b 100644 --- a/proxy/hdrs/HTTP.h +++ b/proxy/hdrs/HTTP.h @@ -214,7 +214,6 @@ enum SquidHitMissCode SQUID_HIT_LEVEL_7 = 'H', SQUID_HIT_LEVEL_8 = 'I', SQUID_HIT_LEVEl_9 = 'J', - SQUID_HIT_LEVEL_10 = 'K', SQUID_MISS_NONE = '1', SQUID_MISS_ICP_AUTH = '2', SQUID_MISS_HTTP_NON_CACHE = '3', http://git-wip-us.apache.org/repos/asf/trafficserver/blob/65b5917a/proxy/logging/Log.cc ---------------------------------------------------------------------- diff --git a/proxy/logging/Log.cc b/proxy/logging/Log.cc index e8ce657..e67e2c3 100644 --- a/proxy/logging/Log.cc +++ b/proxy/logging/Log.cc @@ -627,7 +627,7 @@ Log::init_fields() SQUID_LOG_ERR_UNKNOWN, "ERR_UNKNOWN"); Ptr<LogFieldAliasTable> cache_hit_miss_map = make_ptr(new LogFieldAliasTable); - cache_hit_miss_map->init(24, + cache_hit_miss_map->init(23, SQUID_HIT_RESERVED, "HIT", SQUID_HIT_LEVEL_1, "HIT_RAM", // Also SQUID_HIT_RAM SQUID_HIT_LEVEL_2, "HIT_SSD", // Also SQUID_HIT_SSD
