From: wessels <> Date: Thu, 5 Sep 1996 04:08:40 +0000 (+0000) Subject: update X-Git-Tag: SQUID_3_0_PRE1~5856 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1ee4fb1ab3923112310cca171d12a0d8e142580f;p=thirdparty%2Fsquid.git update --- diff --git a/ChangeLog b/ChangeLog index 7c2464bb45..065e38e5ea 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,31 @@ +Changes to squid-1.1.alpha17: + + - Added more IMS support. Now Squid issues IMS requests for + expired objects in the cache. Log type will be either + TCP_EXPIRED_HIT if the server sends "304 Not Modified" or + TCP_EXPIRED_MISS if the server send a new object. + - Fixed storeGetMemSpace() bug; need to check + storeCheckPurgeMem() instead of storeEntryLocked(). + - Renamed icp_hit_or_miss() to icpProcessRequest(). + - Changed mkrfc850() to use normal variable instaed of a + pointer. + - Removed store_entry member from fd_table[] in comm.h. + - Changed httpSendRequest to not tack Squid onto the 'User-Agent' + line, Use HTTP/1.1 'Forwarded' instead. + - Removed icpProcessHIT() which only called icpSendMoreData(). + - Removed icpProcessIMS() which only called icpGetHeadersForIMS(). + - Removed some 'Reset header fields for reply' crap. + - added old_entry member to icpStateData for handling IMS + requests. + - Added 'locks' member to ipcache_entry; need to lock an + ipcache entry during ipcache_call_pending(). + - Removed ipcache_call_pending_badname(). + - Cleaned up setting/clearing IP_LOOKUP_PENDING bit. + - Removed storeEntryLocked() trap in storePurgeMem(). + - Added storeCheckExpired(). + - Removed storeWalkThrough() and removeOldEntry(), changed + storePurgeOld() to do the walking through instead. + Changes to squid-1.1.alpha16: - Fixed ipcache TTL bug from new ipcache_parsebuffer().