]> git.ipfire.org Git - thirdparty/squid.git/blame - ChangeLog
SNMP Agent now returns object instances correctly instead of objects
[thirdparty/squid.git] / ChangeLog
CommitLineData
b93549f6 1Changes to Squid-2.2 ():
2
98b093e7 3 - Removed all SNMP specific ACL code
4 SNMP now uses generic squid ACL's
5 - Removed view-based access crontrol
00b7a8b6 6 - Cleaned up and simplified SNMP section of squid.conf
98b093e7 7 - Changed the SNMP code to use a tree stucture.
00b7a8b6 8 - Added objects to MIB:
9 Request Hit Ratio's
10 Byte Hit Ratio's
11 Number of Clients
61d53e64 12 - Changed SNMP Agent to return object instances correctly.
b93549f6 13 - Added our own assert() macro so we can use debug() instead of
14 printing to stderr.
15 - Added eventFreeMemory().
16 - Fixed ipcCreate() bug when debug_log has FD <= 2.
17 - Changed watchChild() and related code in main.c so that
18 Squid can behave more like a proper daemon process.
19 - Added 'prefer_direct' option (enabled by default) so that
20 people can give parents higher preference than direct.
6703526b 21 - Fixed ipc.c close() bug for async IO. On FreeBSD,
22 comm_close() doesn't work for child processes when async IO is
23 used.
24 - Fixed setting the public key for large ``icons'' (Henrik
25 Nordstrom).
68f87dc5 26 - Rewrote peer digest module to fix memory leaks on reconfigure
27 and clean the code. Increased "current" digest version to 5
28 ("required" version is still 3). Revised "Peer Select" cache
29 manager stats.
30 - Added "-k parse" command line option: parses the config file
31 but does not send a signal unlike other -k options.
1743c283 32 - Revamped storeAbort() calling. Only store_client.c has all
33 the right information to determine if the request should
34 be aborted. Now client and server modules just storeUnregister
35 without ever needing to call storeAbort. In conjunction with
36 this change, we have to add a special check that comm_close()
37 doesn't close a FD while the read/write handler for that FD
38 is still being serviced. See 'current_hdl_fd'.
b93549f6 39
4d62b0af 40Changes to Squid-2.1 (November 16, 1998):
8f897f34 41
42 - Changed delayPoolsUpdate() to be called as an event.
43 - Replaced comm_select FD scanning loops with global fd_set
44 structures. Inspired by Jeff Mogul's patch for squid 1.1.
9e1559ea 45 - Moved functions common to dns.c, redirect.c, authenticate.c,
46 ipcache.c, and fqdncache.c into helper.c.
0753aa46 47 - Changed storeClientCopy2() so that it keeps sending the remainder
48 of a STORE_ABORTED request, instead of cutting off the client as
49 soon as the object becomes aborted.
f0538986 50 - Fixed combined ipf-transparent proxy and a local http-accelerator
51 operation (Quinton Dolan).
52 - Rewrote base64_decode.c because of potential buffer overrun
53 bugs.
912432d8 54 - Configurable handling of whitespace in request URI's.
55 See 'uri_whitespace' in squid.conf.
e33ec474 56 - Added ability to generate HTTP redirect messages from
57 the redirector output by prepending "301:" or "302:" to the
58 new url. See FAQ 4.16 for more details.
829a9357 59 - Eliminated refreshWhen() which was out-of-sync with refreshCheck()
60 potentially causing under-utilized cache digests
61 - Maintain refreshCheck statistics on per-protocol basis so we
62 can tell why ICP or Digests return too many misses, etc.
c68e9c6b 63 - Fixed delay_pools.c class2/class3 typo (Simon Woods).
64 - Changed squid.conf's default access controls to deny all
65 HTTP requests. Admins must write ACL rules to specifically
66 allow their local clients.
67 - Patched French error messages (Mathias HERBERTS).
68 - NextStep porting fixes by Mike Laster:
69 - use xstrdup() in cf_gen.c
70 - check for putenv() in configure
71 - #define S_ISDIR macro
72 - Added --disable-poll configure option (Henrik Nordstrom).
73 - Fixed internal URL hostname case bugs (Henrik Nordstrom).
74 - Patched ftp.c so we never cache autenticated FTP requests
75 (Henrik Nordstrom).
76 - Fixed FTP authentication. We tried to unescape authentication
77 given by basic authentication which is not URL escaped
78 (Henrik Nordstrom).
79 - Fixed HTTP version for common logfile format (Henrik Nordstrom).
80 - Added 'redirect_rewrites_host_header' option to disable rewriting
81 of Host header for redirector responses (Henrik Nordstrom).
82 - Allow semi-customized error message signatures (Henrik Nordstrom).
83 - Fixed bug with errors for unsupported requests (Henrik Nordstrom).
84 - Fixed handling of blank lines in ACL input files (Henrik
85 Nordstrom).
86 - Changed proxy_auth ACL type to consist of a list of valid
87 users. REQUIRED == any (same as ident ACL). ACL type user
88 changed to ident since this is what it really is.
89 (Henrik Nordstrom).
90 - Fixed long URL bugs; make sure 'log_uri' never exceeds
91 MAX_URL bytes.
92 - Allow comments in external ACL files (Gerhard Wiesinger).
93 - Added 'range_offset_limit' configuration option. Requests
94 with ranges that start after this value will be passed
95 on unmodified, and Squid will not cache the response
96 (Henrik Nordstrom).
97 - Added Client HTTP Hit byte counters to 'counters' output
98 (Douglas Swarin).
99 - Got Squid to compile with --enable-async-io on FreeBSD.
100 - Fixed infinite loop bug for cachemgr 'config' option.
101 - Fixed cachability bugs for replies with Pragma: no-cache.
102 - Made content-type multipart/x-mixed-replace uncachable.
103 - Y2K fix for parsing dates in "Wed Jun 9 01:29:59 1993 GMT"
104 format (Richard Kettlewell).
105 - Fixed passing -s option to dnsserver processes (Alvaro Jose
106 Fernandez Lago).
107 - Changed proxy_auth to work on internal objects and when in
108 accelerator mode. (Henrik Nordstrom)
109 - Added login=user:password option to cache_peer directive to
110 be used from a dial-up cache where the parent requires proxy
111 authentication. (Henrik Nordstrom)
112 - If you want to "auto-login", then use a URL on the form
113 http://username:password@server/.... Squid now picks this up
114 when going direct, and turns it into basic WWW
115 authentication. It is also possible to do automatic login to
116 certain servers by using a redirector to add the needed
117 authentication information. (Henrik Nordstrom)
04f0ba5c 118 - Changed refreshCheck() so that objects with negative age
119 are always stale.
4d62b0af 120 - Fixed "plain" FTP listings (Henrik Nordstrom).
121 - Fixed showing banner/logon message for top-level FTP
122 directories (Henrik Nordstrom).
123 * Changes below have been made to SQUID_2_1_PATCH1
124 - Fixed pinger packet size assertion.
125 - Fixed WAIS forwarding.
126 - Fixed dnsserver coredump bug caused by using both -D and
127 -s options.
e42d5181 128 * Changes below have been made to SQUID_2_1_PATCH2
129 - Fixed EBIT macro bugs when the bitmask is a 64-bit long.
130 - Fixed proxy auth NULL password bug.
131 - Fixed queueing of multiple peerRefreshDNS events.
132 - Added a stack of StoreEntry objects to be released after
133 store rebuild completes.
134 - Fixed NULL pointer bugs with too-large requests (found by
135 Martin Lathoud).
136 - Fixed reading replies from buggy ident servers. Replies
137 might not have terminating CR or LF (Henrik Nordstrom).
8f897f34 138
41587298 139Changes to Squid-2.0 (October 2, 1998):
71d6dc56 140
4c154d99 141 - Added NAT/Transparent hijacking code from Quinton Dolan.
142 - Added actual filesystem usage to cachemgr 'storedir' page.
41587298 143 Only works for operating systems which support statvfs().
a79d724b 144 - Fixed HTCP compile-time bugs.
145 - Fixed quick_abort bugs. Configured values are stored as
146 Kbytes, not bytes.
41587298 147 - Removed fwdAbortFetch(). It breaks quick_abort and seems
148 mostly useless.
0da7d807 149 - Changed storeDirSelectSwapDir() to skip swap directories
150 when their utilization is over the high water mark ratio.
9ca005ac 151 - Fixed off-by-one bug for dead neighbor detection (Joe Ramey).
18cc143b 152 - fixed bugs in Content-Range header generation
153 - changed the way Range requests are handled:
71d6dc56 154 - do not "advertise" our ability to process ranges at
155 all
156 - on hits, handle simple ranges and forward complex
157 ones
158 - on misses, fetch the whole document for simple ranges
159 and forward range request for complex ranges
160 The change is supposed to decrease the number of cases when
161 clients such as Adobe acrobat reader get confused when we
162 send a "200" response instead of "206" (because we cannot
163 handle complex ranges, even for hits) Note: Support for
164 complex ranges requires storage of partial objects.
41587298 165 - Removed SNMP mib-2.system group from squid.
166 - Removed SNMP ability to iterate through ipcache and friends.
167 - Added SNMP ipcache/fqdncache basic statistics.
168 - Converted SQUID-MIB to SMIv2 (RFC 1902).
169 - Moved SQUID-MIB to enterprises section of the tree in preparation
abcf1bb2 170 of the split into PROXY-MIB & SQUID-MIB.
41587298 171 - Corrected minor errors in SQUID-MIB.
172 - Moved uptime into cacheSystem from cacheConfig.
173 - Corrected a number of get-next-request bugs, snmpwalk should now
abcf1bb2 174 return all objects and not skip some.
41587298 175 - Fixed netdbClosestParent() so it won't return sibling
176 peers.
177 - Fixed a bug with secondary clients on entries with
178 ENTRY_BAD_LENGTH set. We should release the
179 bad entry to prevent secondary clients jumping on.
180 - Changed MIB to prevent parse warnings at startup.
f0538986 181 * Changes below have been made to SQUID_2_0_PATCH1
9689d97c 182 - Fixed a forwarding loop bug. Even though we were detecting
183 a loop, it was not being broken.
184 - Try to prevent sibling forwarding loops by NOT forwarding a
185 request to a sibling if we have a stale copy of the object.
186 Validation requests should only be sent to parents (or
187 direct).
188 - Fixed ncsa_auth hash bugs when re-reading password file.
189 - Changed clientHierarchical() so that by default SSL/CONNECT
190 requests do NOT go to neighbor caches.
d87ebd78 191 - Changed clientHandleIMSReply() to not call storeAbort()
192 because there can be more than one client hanging on the
193 StoreEntry. This hopefully fixes "store_status !=
194 STORE_ABORTED" assertions.
f0538986 195 - Added temporary fix to httpMakePublic() to prevent assertions
196 (!EBIT_TEST(e->flags, RELEASE_REQUEST)) in storeSetPublicKey().
197 * Changes below have been made to SQUID_2_0_PATCH2
198 - PATCH1 introduced a seriously stupid bug which prevented ICP
199 queries for all requests. Fixed by checking
200 request->hierarchical in peerSelectFoo().
18cc143b 201
4c154d99 202Changes to squid-1.2.beta25 (September 21, 1998):
203
4b66bfd3 204 - Fixed async IO bugs from adding filedescriptor arg to AIOCB
205 callbacks (Henrik Nordstrom).
206 - Fixed store_swapout.c assertion. We were freeing object data
207 past the swapout_done offset. This probably happens (only?)
208 when an object changes from cachable to uncachable while
209 it is being swapped out.
a260d877 210 - Added MEM_CLIENT_SOCK_BUF type so we can change the size
211 of the buffers used for writing data to the client sockets.
669d90e7 212 - Added configure check for libbind.a. If found, it will be
213 used instead of libresolv.a.
214 - Changed fwdStart() to always allow internally generated
dddd5b55 215 requests, such as for peer digests. These requests are
216 known to fwdStart() because the address arg is set to
217 'no_addr'.
669d90e7 218 - Completed initial HTCP implementation. It works, but is not
219 tested much.
2d5c8e74 220 - Added counters for I/O syscalls.
221 - Fixed httpMaybeRemovePublic. With broken ICP neighbors
222 (netapp) Squid doesn't use private keys. This caused us
223 to remove almost every object from the cache.
224 - Added 'asndb' cachemgr stats to show AS Number tree.
dddd5b55 225 - Fixed AS Number byte-order bug for netmasks.
2d5c8e74 226 - Fixed comm_incoming calling rate for high loads (Stewart
227 Forster).
426012d2 228 - Give always_direct higher precedence than never_direct
229 (Henrik Nordstrom).
dddd5b55 230 - Changed PORT ACL type to accept ranges. Now you can easily
231 deny, for example, all priveleged ports except 80, 70, 21,
232 etc.
233 - ARP ACL fixes for Linux (David Luyer).
234 - Replaced various "EBIT" flags bitfileds with structures of
235 "int:1" members.
236 - Changed storeKeyPrivate and storeKeyPublic to be a bit more
237 efficient by removing snprintf(). This causes an
238 incompatibility with old cache keys, however. To transition,
239 we will look up both the new and old style keys for about the
240 next 30 days. After that, if you haven't run this (or a
241 future) version, your cache contents will be lost.
242 - Made the client-side write buffer size configurable with
243 a #define in defines.h. By default it is still 4096 bytes.
244 - Removed redirectUnregister(). It should be unnecessary
245 because of cbdata locks.
246 - Fixed multiple HEAD request brokennesses (Henrik Nordstrom).
247 - Changed non-blocking connect(2) code to call getsockopt()
248 instead of connect() again. This is the approach recommended
249 by Stevens, and fixes bugs on BSD-ish systems when subsequent
250 connect() calls loop with EAGAIN status.
251 - Added MD5 cache keys to memory pool accounting.
252 - Added code to track number of open DISK descriptors and stop
253 swapping out objects if the number of disk descriptors becomes
254 too large. For now the limit must be manually configured with
255 the 'max_open_disk_fds'. By default, there is no limit.
256 - Stopped encoding a request method in the high byte of the ICP
257 reqnum field. Instead queried cache keys are copied to a
258 static array, indexed by the reqnum, modulo the array size.
259 Now we just use the request number to lookup a cache key,
260 instead of rebuilding it from the ICP reply URL and method,
261 unless we have netapp neighbors--they don't do reqnum
262 properly.
263 - Fixed reconfigure memory access bugs in redirect.c.
0753aa46 264 - Ignore unreasonably large ICP RTT values which cause overflow
265 bugs in calculating the average RTT (thanks Niall!)
4b66bfd3 266
8e6a43e8 267Changes to squid-1.2.beta24 (August 21, 1998):
268
6c4067e5 269 - Added Bulgarian error pages by Evgeny Gechev.
ceb79b2b 270 - Changed StoreEntry->lock_count to a u_short.
c7d6216e 271 - Replaced urlcmp with strcmp
272 - Fixed pragma no-cache ejecting ENTRY_SPECIAL objects
273 (Henrik Nordstrom).
274 - Eliminated unneeded BASE HREF on "root" directories (Henrik
275 Nordstrom).
276 - Fixed peerDigestFetchFinish() assertion caused by forwarding
277 failures (e.g. miss_access rules).
ada249f8 278 - Changed signal handlers with ASYNC_IO and Linux so that
279 -k command line options work (Miquel van Smoorenburg).
4616f9ea 280 - Rewrote shutdown code to use events instead of setting
281 FD timeouts.
903e21a0 282 - Fixed cachemgr 'objects' (statObjects()) by adding a check
b6a76fb2 283 for READ_AHEAD_GAP, and calling storeCheckSwapout() in
284 storeBufferFlush(). Otherwise, the read-past pages would
285 never be freed.
681979a2 286 - Fixed DNSSERVER shutdown bugs. The re-opened dnsserver processes
287 were being closed by the dnsServerShutdown event.
b6a76fb2 288 - Modified storeHashInsert() to insert PRIVATE objects at
289 the tail of the LRU list, and PUBLIC objects at the head.
290 Thus, PRIVATE objects get kicked out quicker.
95e36d02 291 - Added David Luyer's DELAY_POOLS code.
54b5b3e5 292 - Fixed a bug due to HEAD replies which lack the end-of-headers
293 line.
294 - Made proxy-auth realm string configurable (Bob Franklin)
295 - Changed default mime time to a viewable one (Henrik Nordstrom).
296 - configure fixes for Sony's NEWS-OS 6.x (Makoto MATSUSHITA).
297 - Fixed 'you are running out of filedescriptors' bug which
298 could cause the HTTP incoming connection handler to not
299 be reset.
e23fbf04 300 - Changed syslog logging. Now squid debug levels 0 and 1 go
d737baa0 301 to syslog. Level 0 gets LOG_WARNING and level 1 gets LOG_NOTICE
e23fbf04 302 (this needs more work!)
2cb51fe0 303 - Fixed memory access errors in statAvgTick().
abc1237e 304 - Fixed duplicate requestUnlink() bug in forward.c
6c4067e5 305 - Fixed possible memory access bugs from not setting e->mem_obj
306 = NULL in destroy_MemObject().
307 - Deleted TCP_IMS_MISS tag. Always use TCP_IMS_HIT instead.
308 - Modified headersEnd and httpMsgIsolateHeaders to account
309 for funky line terminations such as CRCRNL.
310 (``but Netscape and IE _tolerate_ this'')
311 - Fixed carp functions (Eric Stern).
312 - Replaced internal proxy_auth code with extern authentication
313 module (Arjan de Vet).
314 - moved hash.c to libmiscutil.a.
e931f99a 315 - Fixed handling of ICP queries with whitespace in URLs.
316 Now we return ICP error and escape the URL before logging.
3a15a393 317 - Added configure check for socklen_t (David Luyer).
318 - Removed USE_SPLAY #defines; it is now standard.
3a76c002 319 - Added FD arg to async IO callbacks (AIOCB) so we can eliminate
320 temporary disk_ctrl_t structures.
321 - Changed ENOSPC disk write errors to reduce specific cache_dir
322 sizes, and not just the size of the cache as a whole.
f9cece6e 323 - Added httpMaybeRemovePublic() to purge public objects for
324 certain responses even though they are uncachable. This is
325 needed, for example, when an initially cachable object
326 later becomes uncachable.
8e6a43e8 327 - Added refresh_pattern options to ignore client reloads
328 (Henrik Nordstrom)
329 - Relocated disk.c code which combines blocks for writing
330 (Stewart Forster).
c7d6216e 331
857703c6 332Changes to squid-1.2.beta23 (June 22, 1998):
333
cf7f704c 334 - Added Turkish error pages by Tural KAPTAN.
66bbb757 335 - Added basic support for Range requests. For most cachable
336 requests, Squid replies with an "Accept-Ranges" header. Upon
337 receiving a potentially cachable Range request for a not
338 cached object, Squid requests the whole object from origin
339 server and then replies with specified range(s) to the
340 client. Multi-range requests are supported. Adjacent
341 overlapping ranges are merged. If-Range requests are
342 supported. Limitations: Multi-range requests with out of
343 order ranges are not supported.
344 - Made md5.c use standard memcpy and memset if they are
345 avaliable.
346 - Memory pools will now shrink if Squid is run-time
347 reconfigured with smaller value of memory_pools_limit tag.
348 - Added counter for number of clients (Tomi Hakala).
349 - Changed neighbor UP/DOWN algorithm to require 10 failed TCP
350 connections for UP->DOWN transition.
351 - Added 'unique_hostname' configuration option when its
352 necessary to have multiple machines with the same visible
353 hostname.
222917b2 354 - Fixed pumpReadFromClient() to not read too many bytes on
355 persistent connections.
53856ebd 356 - We can now cache HTTP replies with Set-Cookie. These evil
357 headers are now filtered out for cache hits on the client
358 side.
222917b2 359 - Fixed SNMP bugs caused by using snmpwalk.
9089cc70 360 - Fixed snmp system Group; all objects are now returned.
361 - Fixed snmp system Group sysDescr and sysContact.
78dfab2a 362 - Fixed snmp system Group sysObjectID it now returns a OBJECT
363 IDENTIFIER.
7fce9c3e 364 - Allocate FwdState from mem pools.
365 - Minor HTCP progress.
222917b2 366 - Moved 'miss_access' ACL check from client_side.c to forward.c
ed169eab 367 - Fixed logging of usernames for requests which require
368 proxy-authentication.
cf7f704c 369 - Fixed HTTP request parser to accept lowercase HTTP identifier
370 (Oskar Pearson).
371 - Fixed FTP listings to always include links to the parent
372 directory (Henrik Nordstrom).
373 - Fixed FTP to show an "empty" listing instead of showing
374 a "document contains no data" error (Henrik Nordstrom).
375 - Fixed refreshCheck() bug. Often it was checking the
376 refresh patterns against the string "[null_mem_obj]"
377 because we moved URLs to MemObject.
378 - Added CARP support by Eric Stern.
48382032 379 - Fixed select-spin bug when an ICP reply actually gets queued
380 and we failed to execute the write callback.
354b5fe1 381 - Fixed a storeCheckSwapOut bug. We were freeing up to
382 the queued offset instead of the done offset. This
383 resulted in a small chunk of object data not being in
384 memory and not yet written to disk. A client could
385 recieve a partial object because file_read() unexpectedly
386 returns EOF.
0aa791f8 387 - Fixed proxy-authentication hangs (Henrik Nordstrom).
c2354a6b 388 - Fixed request_t->flags bug causing authenticated, proxied
389 responses to be cached (Arjan de Vet).
e0e32f36 390 - Fixed MIME types for .tgz extension (Henrik Nordstrom).
391 - Added view and download options to FTP listings (Henrik
392 Nordstrom).
393 - Modified configure to allow using pre-installed libdlmalloc.a
394 (Masashi Fujita).
e8d8856c 395 - Fixed cachemgr 'objects' implementation.
fecf98dc 396 - Changed refreshCheck() algorithm. For cached objects, we
397 now check, in the following order:
398 * request max-age
399 * response Expires (if present)
400 * refresh_pattern max-age
401 * response Last-Modified compared to refresh_pattern
402 LM-factor (only if Last-Modified is present)
403 * refresh_pattern min-age
404 - Changed Copyrights.
d192d11f 405
ee3a78d4 406Changes to squid-1.2.beta22 (June 1, 1998):
407
2246b732 408 - do not cut off "; parameter" from "digitized" Content-Type
409 http fields
410 - Added X-Request-URI for persistent connection debugging
411 (Henrik Nordstrom)
f4d83f6d 412 - Added Polish error pages from Maciej Kozinski.
145f10f1 413 - Fixed hash_first/hash_next bugs with **Current pointer.
414 Replaced with *next pointer.
f4d83f6d 415 - Fixed PUT/POST bugs in client (Henrik Nordstrom).
416 - Deny forwarding loops in httpd accel mode (Henrik Nordstrom).
417 - Fixed eventRun "spin" bug when event delta time == 0.
a9cc1935 418 - Fixed setting Last Modified time on cached entries when
419 receiving a 304 reply.
06e87923 420 - Added while loop in httpAccept().
421 - Added while loop in icpHandleUdp().
422 - Fixed some small memory leaks.
423 - Fixed single-bit-int flag checks (Henrik Nordstrom).
137ee196 424 - Replaced "complex" (offset accounting) calls to snprintf with MemBuf
425 - Do not send only-if-cached cc directive with requests
426 for peer's digests.
ee3a78d4 427 - Added "automatic tuning" for incoming request rate, i.e.
428 how often to check HTTP and ICP sockets. See comm.c
429 comments for details.
145f10f1 430
6ee40ea2 431Changes to squid-1.2.beta21 (May 22, 1998):
432
434b408f 433 - Added Italian error pages by Alessio Bragadini.
a3f9588e 434 - Added Estonian error pages by Toomas Soome.
06066bbc 435 - Added Russian (koi-r) error pages by Andrew L. Davydov.
7b381d33 436 - Added Czech error pages by Jakub Nantl.
8e866bb4 437 - Fixed asnAclInitialize calling to prevent coredump.
438 - Fixed FTP directory parsing again.
439 - Made FTP directory listing "Generated" tagline like
440 the one for error pages.
52f977aa 441 - Fixed an assertion coredump in statHistCopy from
442 reconfiguring with different #peers in squid.conf
10202788 443 - Ignore leading whitespace on requests (and replies). RFC
444 2068 section 4.1, robustness (Henrik Nordstrom)
445 - Fixed keep_alive bug. We did not always honour reply
446 headers, but rather assumed connections could be persistent.
447 - Fixed reading whois output for AS numbers, especially when
448 they are longer than 4 KB.
449 - Removed 'cache_stoplist_pattern' configuration option. This
450 feature is now handled by 'no_cache'.
451 - If a URN resolves to only one URL, just return it immediately
452 instead of giving the user a "choice" (Andy Powell).
453 - Fixed year-2000 bug in lib/iso3307.c (Henrik Nordstrom).
454 - Changed squid-internal object names.
455 - Added netdb exchange protocol.
456 - Fixed wordlistDestroy() uninitialized pointer bug in
457 ftpParseControlReply.
06066bbc 458 - Fixed redirector subprocess to show real program name.
459 - Changed URN menu output to be sorted.
460 - Added fast select(2) timeouts when using ASYNC_IO.
461 - Added ARP ACL support for Linux (David Luyer).
2246b732 462 - Added binary http headers to requests
99edd1c3 463 - request_t objects are now created and destroyed in a consistent way
464 - Fixed cache control printf bug
465 - Added a lot of new http header ids
466 - Improved Connection: header handling; now both Connection and
2246b732 467 Proxy-Connection headers are checked for connection directives
99edd1c3 468 - Connection request header is now handled correctly regardless
469 of its position and the number of entries
2246b732 470 - Only replies with valid Content-Length can be sent with keep-alive
471 connection directive (Henrik Nordstrom)
472 - Better handling of persistent connection "clues" in HTTP headers;
473 the decision now depends on HTTP version (and User-Agent exceptions)
99edd1c3 474 - Removed handling of "length=" directive in IMS headers;
475 the directive is not in the HTTP/1.1 standard;
476 standing by for objections
477 - allowed/denied headers are now checked using bit masks instead of
478 strcmp loops
479 - removed Uri: from allowed headers; Uri is deprecated in RFC 2068
2246b732 480 - removed processing of Request-Range header (not in specs?)
7b381d33 481 - Fixed byte-order bugs in cacheDigestHashKey.
482 - Changed hash_remove_link() to return void.
483 - Changed ipcache_gethostbyname() to return NULL if
484 i->addrs.count == 0.
6de5fa88 485 - Added millisecond-timing to select/poll loops and event
486 queue.
487 - Changed 'peerPingTimeout' value to be twice the average
488 of all the peer ICP RTT's.
489 - Added 'half_closed_clients' option to force closing of
490 client connections which might only be half-closed.
491 - Fixed matchDomainName coredump bug.
492 - Don't cache HTTP replies with Vary: headers until we
493 get content negotiation working.
494 - Fixed SSL proxying to forward full HTTP request headers.
c09459dd 495 - Changed storeGetMemSpace(). Only purge down to the HIGH
496 water mark; move locked entries to the head of the inmem
497 list.
498 - Changed clientReadRequest() to locally handle any
499 "squid-internal-static" URL for any host.
52f977aa 500 - Disable persistent connections for client connections
501 from broken Netscape User-Agent, version 3.* (Stewart Forster)
434b408f 502
901b8eaf 503Changes to squid-1.2.beta20 (April 24, 1998):
504
fd1bc012 505 - Improved support for only-if-cached cache control directive.
506 - Enabled 304 replies for ENTRY_SPECIAL objects (e.g., icons).
a1a62b14 507 - Fixed 'quick_abort' percent calculation bug.
508 - Fixed quick_abort FPE bug.
509 - Changed more errno-checking functions to use ignoreErrno().
510 - Added ERESTART to ignoreErrno() because of report from
511 a Solaris system.
512 - Fixed '#elsif' typo.
513 - Fixed MemPool assertion by moving memInit() to before
514 configuration parsing functions.
515 - Fixed default 'announce_period' value (was 1 day, should
516 be 0) (Joe Ramey).
517 - Added configure warning for low filedescriptors and pointer
518 to FAQ.
b0497a40 519 - Fixed httpBodySet() bug causing URN related coredumps.
520 - Changed ipcacheCycleAddr() to always cycle through all all
521 available addresses, and not just advance when one of
522 them goes BAD.
523 - Fixed squid-internal bug for mixed-case hostnames (Henrik
524 Nordstrom).
4e41d49f 525 - Fixed ICP counting probelm. icpUdpSend() arg should be
526 LOG_ICP_QUERY instead of LOG_TAG_NONE.
e4b71f74 527 - Added some additional fault toleranse on FTP data channels
528 (Henrik Nordstrom).
529 - Corrected error reporting on FTP "hacks" (Henrik Nordstrom).
530 - Added lock/unlock for StoreEntry during storeAbort().
531 - Added filemap bit usage stats to cachemgr 'storedir' and
532 'info'.
533 - Replaced 'cache_stoplist' with 'no_cache' Access list.
534 - Fixed (hopefully) remaining swapfile-open-at-exit bugs.
44745828 535 - Fixed default hierarchy_stoplist to be ``default if none.''
536 - Fixed 'fake a recent reply' hack for detecting DEAD
537 and ALIVE neighbors (Joe Ramey).
e376562a 538 - Fixed FTP directory parsing bugs (Joe Ramey).
539 - Fixed ftpTraverseDirectory coredump for NULL ftpState->filepath
540 (Joe Ramey).
dea17509 541 - Fixed daylight savings time bug (again).
fd1bc012 542 - A lot of Cache Digests additions, fixes, and tuning.
543 Cache Digests are still "very experimental".
e376562a 544 - Fixed snprintf() bug. When len == 1, snprintf() would treat
545 the buffer as unknown size, emulating sprintf() behaviour.
546 - Made Error page language configurable with configure script
547 (Henrik Nordstrom).
548 - Fixed squid-internal URLs when http_port == 80.
549 - Remember the client address on redirected requests (Henrik
550 Nordstrom).
551 - Don't rebuild the request if the redirector returned the same
552 URL (Henrik Nordstrom).
553 - Rewrite Host: header on redirected requests (Henrik
554 Nordstrom).
555 - Include port (if non-standard) in generated Host: headers
556 (Henrik Nordstrom).
557 - Fixed rfc1123 timezone hacks for Windows NT
558 (Henrik Nordstrom).
559 - Added Russian Error pages by Ilia Zadorozhko.
560 - Added totals for ICP and HTTP hits to cachemgr client_list
561 output.
6cfa8966 562 - Changed error message to 'Generated TIME by HOST (SQUID/VER)'
563 because any string with an '@' must be an email address.
e376562a 564 - Fixed POST for content-length == 0.
901b8eaf 565 - Fixed "huge 304 reply" loop bug.
5e9ab945 566 - Fixed --enable-splaytree compile bugs.
c93fbf13 567 - Removed ASN lookup code in peer_select.c.
fd1bc012 568
005e5260 569Changes to squid-1.2.beta19 (Apr 8, 1998):
570
b0497a40 571 - Squid-1.2.beta19 compiles and runs on Windows/NT with
572 Cygnus Gnu-WIN32 b19 (Henrik Nordstrom).
447203a7 573 - Added French Error pages by Frank DENIS.
574 - Added Dutch Error pages by Mark Visser
901b8eaf 575 - Added German Error pages by Bernd P. Ziller, Jens Frank,
576 and Anke S.
f9f2be04 577 - Added support for only-if-cached cache-control directive.
005e5260 578 - Added RELAXED_HTTP_PARSER #define to allow requests which are
579 missing the HTTP identifier on the request line (e.g. buggy
580 SpyGame queries). RELAXED_HTTP_PARSER is undefined by default.
1f4d31f9 581 - Fixed disk.c FD leak for delayed closes in
582 diskHandleWriteComplete().
583 - Fixed cache announcement feature.
20fe7191 584 - Fixed httpReadReply() to retry failed HTTP requests on
585 persistent connections when read() returns -1, not only
586 when it returns 0.
805e5f70 587 - Fixed cbdata memory counting leak. cbdataUnlock() always
588 called free(), never memFree().
ff396fe6 589 - Fixed storeDirWriteCleanLogs() malloc bug on Alphas.
005e5260 590 - Fixed `++loopdetect < 10' assertion due to
591 clientHandleIMSReply bug for invalid/partial HTTP
592 replies.
593 - Added preliminary code for HTCP.
594 - Renamed 'aux' dir to 'cfgaux' for legacy DOS machines.
595 - Added "snmp_community" as an ACL type.
596 - Cleaned up proxy-auth acl implementation and removed
597 memory leaks.
598 - Added generic 'hashFreeItems()' function for efficiently
599 freeing hash table pointers.
600 - Added whoisTimeout() for ASN code.
447203a7 601 - Removed BINARY TREE code.
005e5260 602 - Fixed forgetting to reset Config.Swap.maxSize in
603 configDoConfigure.
604 - Fixed httpReplyUpdateOnNotModified() arguments-in-wrong-order
605 bug which caused not modified replies to not get updated.
606 - Fixed client_side.c bugs which could cause data to be written
607 to the client in the wrong order for persistent connections.
608 clientPurgeRequest() and clientHandleIMSComplete() must not
609 call comm_write(). Instead they must create and write to
610 StoreEntry's.
611 - Fixed ICP query service time counting bug(s).
612 - replaced 'char *mime_headers_end()' with 'size_t headersEnd()'
613 to fix buffer overruns. This also requires adding 'buf_sz'
614 args to some functions like clientBuildReplyHeader().
615 But we can eliminate the need to NULL-terminate the
616 buffer beforehand.
617 - Changed commConnectCallback() to reset the FD timeout to
618 zero before notifying about the connection. This requires
619 commSetTimeout() calls in numerous places to reinstall
620 timeouts.
621 - Changed comm_poll_incoming() to be called less frequently
622 (every 15 I/O's instead of every 7 FD's) (Michael O'Reilly).
623 - Removed HAVE_SYSLOG case for debug() macro. Almost all
624 systems do have syslog(), but more importatnly the
625 _db_level value is needed for debugging to stderr.
626 - Rewrote squid/dnsserver interface to use smaller, single-line
627 messages.
628 - Rewrote 'dns' cachemgr output to use a table format.
629 - Rewrote a lot of dnsserver.c.
630 - Added eventAddIsh() for semi-random event scheduling.
631 - Fixed an ftpTimeout bug for sessions which use PORT
632 commands.
633 - Fixed ftp.c to recognized invalid PASV replies (e.g.
634 port == 0).
635 - Removed hash_insert(). All hasing uses hash_join() now.
636 - Renamed hash_unlink() to hash_remove_link().
637 - Added hashPrime() to find closes prime hash table size
638 to a given value.
639 - Fixed Keep-Alive ratio counting bug which prevented
640 persistent connections from being used between cache
641 peers.
642 - Changed icmp.c to NOT queue messages sent from squid to
643 the pinger program.
644 - Changed icp_v2.c to NOT queue ICP messages by default.
645 But they will be queued and resent once if the first
646 send fails. Counters.icp.queued_replies counts the
647 number of messaages queued.
648 - Cleaned up ICP logging.
649 - Added identTimeout().
650 - Fixed ipcache reply counting bug. Overcounted dnsserver
651 replies for partial replies.
652 - Added urlInternal() for building internal Squid URLs.
653 - Changed peerAllowedToUse() to check both 'cache_peer_domain'
654 AND 'cache_peer_acl' configurations. This should be changed
655 in the fugure to use ONLY cache_peer_acl.
656 - Changed DEAD/REVIVED neighbor detection to avoid reporting
657 so many false deaths. (Joe Ramey).
658 - Added some preliminary code to support "cache digests."
659 - Fixed pumpClose() coredumps (?).
660 - Updated cachemgr 'info' output to show median service
661 times for various categories.
662 - Fixed ABW bug in storeDirWriteCleanLogs(). sizeof(off_t)
663 != sizeof(int) for Alphas.
664 - Fixed potential alignment problem in storeDirWriteCleanLogs().
665 - Fixed store_rebuild.c to NOT replace current, but
666 not-swapped-out StoreEntry's with on-disk entries.
667 - Changed storeCleanup() to call storeRelease on invalid
668 entries which don't have a swapfile (i.e. no unlink()
669 penalty).
670 - Fixed storeSwapInStart() to fail for unvalidated
671 entries.
672 - SNMP changes:
673 . renovated mib and added descriptions and comments
674 . added hit and byte counters to client_db , for
675 cacheClientTable
676 . cacheClientTable, netdbTable, cachePeerTable,
677 cacheConnTable now indexed by ip address. hash_lookup was
678 enhanced to allow for subsequent hash_next's similar to
679 hash_first, to speed up getnext's in tables which refer to
680 hash-table structures.
681 . added generic (well, sorf of) table indexing functionality
682 . added makefile dependencies for snmplib and cache_snmp.h
683 . WaisHost, WaisPort, Timeouts removed
684 . FdTable split into FdTable and ConnTable. FdTable simplified
685 . PeerTable and PeerStat merged and put into new cacheMesh
686 group
687 . cacheClientTable added for client statistics and accounting
688 (cacheMesh 2)
689 . cacheSec and cacheAccounting groups removed
690 . fixed acl bug when communities not defined
691 . snmp_acl now survives bad configuration
81d0c856 692
9a713ffb 693Changes to squid-1.2.beta18 (Mar 23, 1998):
694
275d9f2e 695 - Added v1.1 'test_reachability' option.
696 - Fixed hash4() len == 0 bug.
2c26197b 697 - Fixed Config.Swap.maxSize reconfigure bug.
698 - Fixed ICP query bug determining request method.
699 - Moved ICP's storeGet() cache lookup into neighborsUdpAck()
700 so that we know neighbors are alive even when they send
701 us replies for unknown entries.
702 - Changed configure script to add '-std1' for Digital Unix cc.
703 - Fixed SNMP sizeof(int) / sizeof(long) bugs for 64-bit
704 systems.
705 - Added support for 'Cache-Control: Only-If-Cached' request header.
34ad1721 706 - Fixed CheckQuickAbort() bugs for multiple clients on one
707 StoreEntry. Also changed storePendingNClients() to return
708 mem->nclients instead of counting the number of store_client
709 entries with pending callback functions.
275d9f2e 710
041b157e 711Changes to squid-1.2.beta17 (Mar 17, 1998):
712
df43fc93 713 - SNMP MIB version check changed to non-rcs.
02922e76 714 - Added memory pools for variable size objects (strings).
715 There are three pools; for small, medium, and large objects.
716 - Extended String object to use memory pools. Most fixed size char
717 array fields will be replaced using string pools. Same for most
718 malloc()-ed buffers.
5e14bf6d 719 - Changed icon handling to use the hostname and port of the squid
9ed90c85 720 server, instead of the special hostname "internal.squid"
721 (Henrik Nordstrom).
5e14bf6d 722 - All icons are now configured in mime.conf. No hardcoded icons,
f8360ee3 723 including gohper icons (Henrik Nordstrom).
459f2559 724 - Fixed ICP bug when we send queries, but expect zero
725 replies.
ed9c0b33 726 - Fixed alignment/casting bugs for ICP messages.
2b5b6324 727 - A generic client-to-server "pump" was added to handle HTTP
728 PUT as well as POST methods on the client-cache side. Based on
729 "pump" PUT requests can be made to either HTTP or FTP url's.
730 Code is still beta and interoperability with browsers etc has
731 not been tested.
732 - Put #ifdefs around 'source_ping' code.
5e14bf6d 733 - Added missing typedef for _arp_ip_data (Wesha).
734 - Added regular-expression-based ACLs for client and server
735 domain names (Henrik Nordstrom).
736 - Fixed ident-related coredumps from incorrect callback data.
737 - Fixed parse_rfc1123() "space" bug.
738 - Fixed xrealloc() XMALLOC_DEBUG bug (not calling check_free())..
739 - Fixed some src/asn.c end-of-reply bugs and memory leaks.
740 - Fixed some peer->options flag-setting bugs.
741 - Fixed single-parent feature to work again
742 - Removed 'single_parent_bypass' configuration option; instead
743 just use 'no-query'.
744 - Surrounded 'source_ping' code with #ifdefs.
745 - Changed 'deny_info URL' to use a custom Error page.
746 - Modified src/client.c for testing POST requests.
041b157e 747 - Fixed hash4() for SCO (Vlado Potisk).
459f2559 748
7ba777f2 749Changes to squid-1.2.beta16 (Mar 4, 1998):
750
447203a7 751 - Added Spanish error messages from Javier Puche.
02922e76 752 - Added Portuguese error messages from Pedro Lineu Orso
0965bd19 753 - Added a simple but very effective hack to cachemgr.cgi that tries to
754 interpret lines with '\t' as table records and formats them
755 accordingly. With a few exceptions (see source code), first line
756 becomes a table heading ("<th>" html tag) and the rest is formated
757 with "<td>" tags.
7021844c 758 - Added "mem_pools_limit" configuration option. Semantics of
759 "mem_pools" option has also changed a bit to reflect new memory
760 management policy.
7ba777f2 761 - Reorganized memory pools. Squid now supports a global pool
762 limit instead of individual pool limits. Per-pool limits can be
3a88d597 763 implemented on top of the current scheme if needed, but it is
7ba777f2 764 probably hard to guess their values. Squid distributes pool
765 memory among "frequently allocated" objects. There is a
766 configurable limit on the total amount of "idle" memory to be
767 kept in reserve. All requests that exceed that amount are
768 satisfied using malloc library. Support for variable size
769 objects (mostly strings) will be enabled soon.
770 - memAllocate() has now only one parameter. Objects are always
771 reset with 0s. (We actually never used that parameter before;
772 it was always set to "clear").
773 - Added Squid "signature" to all ERR_ pages. The signature is
774 hardcoded and is added on-the-fly. The signature may use
775 %-escapes. Added interface to add more hard-coded responses if
776 needed (see errorpage.c::error_hard_text).
777 - Both default and configured directories are searched for ERR_
778 pages now. Configured directory is, of course, searched first.
779 This allows you to customize a subset of ERR_ pages (in a
780 separate directory) without danger of getting other copies out
781 of sync.
782 - Security controls for the SNMP agent added. Besides
783 communities (like password) and views (part of tree
784 accessible), the snmp_acl config option can be used to do acl
785 based access checks per community.
786 - SNMP agent was heavily re-written, based on cmu-snmpV1.8. You
787 can now walk through the whole mib tree. Several new variables
788 added under cacheProtoAggregateStats
12cf1be2 789 - Added rudimental statistics for HTTP headers.
7ba777f2 790 - Adjusted StatLogHist to a more generic/flexible StatHist.
12cf1be2 791 Moved StatHist implementation into a separate file.
178dbda2 792 - Added FTP support for PORT if PASV fails, also try the
793 default FTP data port (Henrik Nordstrom).
794 - Fixed NULL pointer bug in clientGetHeadersForIMS when a
795 request is cancelled for fails on the client side.
796 - Filled in some squid.conf comments (never_direct,
797 always_direct).
798 - Added RES_DNSRCH to dnsserver's _res.options when the
799 -D command line option is given.
800 - Fixed repeated Detected DEAD/REVIVED Sibling messages when
801 peer->tcp_up == 0 (Michael O'Reilly).
802 - Fixed storeGetNextFile's incorrect "directory does not exist"
803 errors (Michael O'Reilly).
804 - Fixed aiops.c race condition (Michael O'Reilly, Stewart
805 Forster).
806 - Added 'dns_nameservers' config option to specify non-default
807 DNS nameserver addresses (Maxim Krasnyansky).
808 - Added lib/util.c code to show memory map as a tree
809 (Henrik Nordstrom).
810 - Added HTTP and ICP median service times to Counters and
811 cachemgr average stats.
812 - Changed "-d" command line option to take debugging level
813 as argument. Debugging equal-to or less-than the argument
814 will be written to stderr.
ef65d6ca 815 - Removed unused urlClean() function from url.c.
adba4a64 816 - Fixed a bug that allowed '?' parts of urls to be recorded in
ef65d6ca 817 store.log. Logged urls are now "clean".
178dbda2 818 - Cache Manager got new Web interface (cachemgr.cgi). New .cgi
819 script forwards basic authentication from browser to squid.
820 Authentication info is encoded within all dynamically generated
821 pages so you do not have to type your password often.
822 Authentication records expire after 3 hours (default) since
823 last use. Cachemgr.cgi now recognizes "action protection" types
824 described below.
825 - Added better recognition of available protection for actions
826 in Cache Manager. Actions are classified as "public" (no
827 password needed), "protected" (must specify a valid password),
828 "disabled" (those with a "disable" password in squid.conf), and
829 "hidden" (actions that require a password, but do not have
830 corresponding cachemgr_passwd entry). If you manage to request
831 a hidden, disabled, or unknown action, squid replies with
832 "Invalid URL" message. If a password is needed, and you failed
833 to provide one, squid replies with "Access Denied" message and
834 asks you to authenticate yourself.
835 - Added "basic" authentication scheme for the Cache Manager.
836 When a password protected function is accessed, Squid sends an
837 HTTP_UNAUTHORIZED reply allowing the client to authorize itself
838 by specifying "name" and "password" for the specified action.
839 The user name is currently used for logging purposes only. The
840 password must be an appropriate "cachemgr_passwd" entry from
841 squid.conf. The old interface (appending @password to the url)
842 is still supported but discouraged. Note: it is not possible
843 to pass authentication information between squid and browser
844 *via a web server*. The server will strip all authentication
845 headers coming from the browser. A similar problem exists for
846 Proxy-Authentication scheme.
847 - Added ERR_CACHE_MGR_ACCESS_DENIED page to notify of
848 authentication failures when accessing Cache Manager.
63259c34 849 - Added "-v" (Verbose) and "-H" (extra Headers) options to client.c.
178dbda2 850 - Added simple context-based debugging to debug.c. Currently,
851 the context is defined as a constant string. Context reporting
852 is triggered by debug() calls. Context debugging routines
853 print minimal amount of information sufficient to describe
854 current context. The interface will be enhanced in the future.
855 - Replaced _http_reply with HttpReply. HttpReply is a
856 stand-alone object that is responsible for parsing, swapping,
857 and comm_writing of HTTP replies. Moved these functions from
858 various modules into HttpReply module.
8bfcd557 859 - Added HttpStatusLine, HttpHeader, HttpBody.
178dbda2 860 - All HTTP headers are now parsed and stored in a "compiled"
861 form in the HttpHeader object. This allows for a great
862 flexibility in header processing and builds basis for support
863 of yet unsupported HTTP headers.
864 - Added Packer, a memory/store redirector with a printf
865 interface. Packer allows to comm_write() or swap() an object
866 using a single routine.
867 - Added MemBuf, a auto-growing memory buffer with printf
868 capabilities. MemBuf replaces most of old local buffers for
869 compiling text messages.
870 - Added MemPool that maintains a pre-allocated pool of opaque
871 objects. Used to eliminate memory thrashing when allocating
872 small objects (e.g. field-names and field-value in http
873 headers).
8bfcd557 874
3197e644 875Changes to squid-1.2.beta15 (Feb 13, 1998):
876
55647891 877 NOTE: This version has changes which may cause all or part
878 of your cache to be lost. However, you can problably
879 save most of it by doing a slow restart. Specifically:
880
881 1. Kill the running squid-1.2.beta14 process; wait for it to
882 fully exit.
883 2. Remove all 'swap.state*' files, either in each cache_dir, or
884 as defined in your squid.conf
885 3. Start squid-1.2.beta15. The store will be rebuilt from the
886 existing swap files, reading the directories and opening
887 the files.
888
bcfbdc11 889 - Fixed some problems related to disk (and pipe) write error
890 handling. file_close() doesn't always close the file
891 immediately; i.e. when there are pending buffers to write.
892 StoreEntry->lock_count could become zero while a write is
893 pending, then bad things happen during the callback.
894 - The file_write() callback data must now be in the callback
895 database (cbdata). We now use the swapout_ctrl_t structure
896 for the callback data; it stays around for as long as we are
897 swapping out.
898 - Changed the way write errors are handled by diskHandleWrite.
899 If there is no callback function, now we exit with a fatal
900 message under the assumption that the file in question is a
901 log file or IPC pipe. Otherwise, we flush all the pending
902 write buffers (so we don't see multiple repeated write errors
903 from the same descriptor) and let the upper layer decide how
904 to handle the failure.
905 - Fixed storeDirWriteCleanLogs. A write failure was leaving
906 some empty swap.state files, even though it tells us that its
907 "not replacing the file." Don't flush/rename logs which we
908 have prematurely closed due to write failures, indiciated by
909 fd[dirn] == -1. Close these files LAST, not before
910 renaming.
911 - Fixed storeDirClean to clean directories in a more sensible
912 order, instead of the new "MONOTONIC" order for swap files.
0465e406 913 - Merged fdstat.c functions into fd.c.
914 - Cleaned up some debugging sections. Some unrelated source
915 files were using the same section.
916 - Removed curly brackets from all cachemgr output.
917 - Removed unused filemap->last_file_number_allocated member.
918 - Removed unused fde->lifetime_data member.
919 - Fixed incorrectly applying htonl() on icp_common_t->shostid.
920 - Call setsid() before exec() in ipc.c so that child processes
921 don't receive SIGINT (etc) when running squid on a tty.
2f2dd5ad 922 - Changed StoreEntry->object_len to ->swap_file_sz so we
923 can verify the disk file size at restart. Moved object_len
924 to MemObject->object_sz. Note object_sz is initialized
925 to -1. If object_sz < 0, then we need to open the swap
926 file and read the swap metadata.
927 - Changed store_client->mem to ->entry because we need
928 e->swap_file_sz to set mem->object_sz at swapin.
2f2dd5ad 929 - Renamed storeSwapData structure to storeSwapLogData.
930 - Fixed storeGetNextFile to not increment d->dirn. Added
931 check for opendir() failure.
932 - Fixed storeRebuildStart to properly link the directory
933 list for storeRebuildfromDirectory mode.
e157f97f 934 - Added -S command line option to double-check store
935 consistency with disk files in storeCleanup().
936 - Fixed a problem with transactional logging. In many
937 cases we were adding the public cache key and then
938 logging a delete for the private key. This is worthless
939 because during rebuild we could not locate the previous
940 public-keyed entry. Now we assert that only public-keyed
941 entries can be logged to swap.state. storeSetPublicKey()
942 and storeSetPrivateKey() have been modified to log an
943 ADD or DEL when the key changes.
944 - Fixed storeDirClean bug. Needed to call
945 storeDirProperFileno() so the "dirn bits" get set.
946 - Fixed a storeRebuildFromDirectory bug. fullpath[] and
947 fullfilename[] were static to that function and did
948 not change when the "rebuild_dir" arg did. Moved these
949 buffers to the rebuild_dir structure.
950 - In storeRebuildFromSwapLog, we were calling storeRelease()
951 for cache key collisions. This only set the RELEASE_REQUEST
952 bit and did not clear the swap_file_number in the filemap or
953 in the StoreEntry, so the swap file could get unlinked later
954 when it was really released.
4e0f0471 955 - Fixed FTP so that ';type=X' specifically sets the HTTP reply
956 content-type and content-encoding (Henrik Nordstrom).
957 - Removed 'icon_content_type' configuration option. Content
958 types now taken from mime.conf (Henrik Nordstrom).
2a9b2b73 959 - Added additional memory malloc tracing and memory leak
960 detection. Use --enable-xmalloc-debug-trace configure
961 option and -m command line option (Henrik Nordstrom).
bcfbdc11 962
93169941 963Changes to squid-1.2.beta14 (Feb 6, 1998):
964
5471db88 965 - Replaced snmplib free() calls with xfree().
966 - Changed the 'net_db_name' hash table structure to
967 make it easier to move names from one network to another
968 (copied from 1.1 code).
93169941 969 - Filled in some of the config dump routines (dump_acl,
970 dump_acl_access).
971 - Full memory debugging option (--enable-xmalloc-debug-trace)
972 (Henrik Nordstrom).
973 - Filled-in and clarified many squid.conf comments (Oskar
974 Pearson).
975 - Fixed up handling of SWAP_LOG_DEL swap.state entries.
5471db88 976
f91834bf 977Changes to squid-1.2.beta13 (Feb 4, 1998):
f577e074 978
b4512acd 979 - NOTE: With this version the "swap.state" file format has
980 changed. Running this version for the first time will
981 cause your current cache contents to be lost!
f91834bf 982 - NOTE: this version still has the bug where we don't rewind
983 a swapout file and rewrite the swap meta data. Objects
984 larger than 8KB will be lost when rebuilding from the swap
985 files.
d04dd4bf 986 - Combined various interprocess communication setup functions
987 into ipcCreate().
988 - Removed some leftover ICP_HIT_OBJ things.
989 - Removed cacheinfo and proto_count() and friends; these are to
990 be replaced in functionality by StatCounters and 5/60 minute
991 average views via cachemgr.
992 - Fixed --enable-acltree configure message (Masashi Fujita).
993 - Fixed no reference to @LIB_MALLOC@ in src/Makefile.in
994 (Masashi Fujita).
995 - Fixed building outside of source tree (Masashi Fujita).
dbfed404 996 - FTP: Format NLST listings, and inform the user that the NLST
997 (plain) format is available when we find a LIST listing that we
998 don't understand (Henrik Nordstrom)
999 - FTP: Use SIZE on Binary transfers, and not ASCII. The
1000 condition was inversed, making squid use SIZE on ASCII
1001 transfers (Henrik Nordstrom).
1002 - Enable virtual and Host: based acceleration in order to be
1003 able to use Squid as a transparent proxy without breaking
1004 either virtual servers or clients not sending Host: header
1005 the order of the virtual and Host: based acceleration needs
1006 to be swapped, giving Host: a higher precendence than virtual
1007 host (Henrik Nordstrom).
1008 - Use memmove/bcopy as detected by configure Some systems does
1009 not have memmove, but have the older bcopy implementation
1010 (Henrik Nordstrom).
6cf028ab 1011 - Completely rewritten aiops.c that creates and manages a pool
1012 of threads so thread creation overhead is eliminated (SLF).
1013 - Lots of mods to store.c to detect and cancel outstanding
1014 ASYNC ops. Code is not proven exhaustive and there are
1015 definately still cases to be found where outstanding disk ops
1016 aren't cancelled properly (SLF).
1017 - Changes to call interface to a few routines to support disk
1018 op `tagging', so operations can be cleanly cancelled on
1019 store_abort()s (SLF).
1020 - Implementation of swap.state files as transaction logs.
1021 Removed objects are now noted with a negative object size.
1022 This allows reliatively clean rebuilds from non-clean
1023 shutdowns (SLF).
1024 - Now that the swap.state files are transaction logs, there's
1025 now no need to validate by stat()ing. All the validation
1026 procedure does is now just set the valid bit AFTER all the
1027 swap.state files have been read, because by that time, only
1028 valid objects can be left. Object still need to be marked
1029 invalid when reading the swap.state file because there's no
1030 guarantee the file has been retaken or deleted (SLF).
1031 - An fstat() call is now added after every
1032 storeSwapInFileOpened() so object sizes can be checked. Added
1033 code to storeRelease() the object if the sizes don't match (SLF).
1034 - #defining USE_ASYNC_IO now uses the async unlink() rather than
1035 unlinkd() (SLF).
1036 - #defining MONOTONIC_STORE will support the creation of disk
1037 objects clustered into directories. This GREATLY improves disk
1038 performance (factor of 3) over old `write-over-old-object'
1039 method. If using the MONOTONIC_STORE, the
1040 {get/put}_unusedFileno stack stuff is disabled. This is
1041 actually a good thing and greatly reduces the risk of serving
1042 up bad objects (SLF).
1043 - Fixed unlink() in storeWriteCleanLogs to be real unlink()
1044 rather than ASYNC/unlinkd unlinks. swap.state.new files were
1045 being removed just after they were created due to delayed
1046 unlinks (SLF).
1047 - Disabled various assertions and made these into debug warning
1048 messages to make the code more stable until the bugs can be
1049 tracked down (SLF).
1050 - Added most of Michael O'Reilly's patches which included many
1051 bug fixes. Ask him for full details (SLF).
1052 - Moved aio_check_callbacks in comm_{poll|select}(). It was
1053 called after the fdset had been built which was wrong because
1054 the callbacks were changing the state of the read/write
1055 handlers prior to the poll/select() calls (SLF).
f09f5b26 1056 - Fixed ARP ACL memory leaks (Dale).
f577e074 1057 - Eliminated URL and SHA cache keys. Cache keys will always
1058 be MD5's now.
1059 - Fixed up store swap meta data.
1060 - Changed swap.state logs to a binary format.
f91834bf 1061 - The swap.state logs are written transaction-style.
d04dd4bf 1062
b5cfbd5b 1063Changes to squid-1.2.beta12 (Jan 30, 1998):
1064
b4512acd 1065 - Added metadata headers to cache swap files. This is an
1066 incompatible change with previous versions. Running this
1067 version for the first time will cause your current cache
1068 contents to be lost.
9fc0b4b8 1069 - -D_REENTRANT when linking with -lpthreads (Henrik Nordstrom)
1070 - Show symlink destinations as a hyperlink in FTP listings
1071 (Henrik Nordstrom)
3a4eaced 1072 - Fixed not allocating enough space for rewriting URLs with
1073 the Host: header (Eric Stern).
1074 - Year-2000 fixes (Arjan de Vet).
1075 - Fixed looping for cache hits on HEAD requests.
fc6dc767 1076 - Fixed parseHttpRequest() coredump for
1077 "GET http://foo HTTP/1.0\r\n\r\n\r\n"
9fc0b4b8 1078
9f802cb1 1079Changes to squid-1.2.beta11 (Jan 6, 1998):
1080
fd82d0b0 1081 - Fixed fake 'struct rusage' definition which prevented compling
1082 on Solaris 2.4.
1083 - Fixed copy-by-ref bug for request->headers in
1084 clientRedirectDone() (Michael O'Reilly).
812db943 1085 - Workaround for Solaris pthreads closing FD 0 upon fork()
1086 (Michael O'Reilly).
05fd71a7 1087 - Fixed shutdown bug with outgoing UDP sockets; we need to
1088 disable their read handlers.
1089 - For comm_poll(), use the fast 50 msec timeout only when
1090 USE_ASYNC_IO is defined.
1fbc6de3 1091 - Fixed pointer bug when freeing AS# ACL entries.
1092 - Fixed forgetting to reset Config.npeers to zero in free_peer().
0f6bdbfa 1093 - Fixed ICP bug causing excessive TIMEOUTs with sibling
1094 neighbors. We must call the ICP reply callback even for
1095 sibling misses.
1096 - Fixed some dnsserver-related reconfigure bugs. Need to
1097 use cbdataLock, etc in fqdncache.c. Also don't want to
1098 use ipcacheQueueDrain() and fqdncacheQueueDrain().
1099 - Fixed persistent connection bug. We were incorrectly
1100 deciding that non-200 replies without content-length
1101 would not have a reply body.
1102 - Fixed intAverage() precedence bug.
1103 - Fixed memmove() 'len' arg bug.
1104 - Changed algorithm for determining alive/dead state of peers.
1105 Instead of using a fixed number of unacknowledged ICP
1106 replies, it is now based on timeouts. If there are no ICP
1107 replies received from a peer within 'dead_peer_timeout'
1108 seconds, then we call it dead.
1109 - Added calls to getCurrentTime() in
1110 comm_{select,poll}_incoming() when ALARM_UPDATES_TIME is not
1111 being used.
1112 - Fixed shutdown bug when the incoming and outgoing ICP socket
1113 is the same file descriptor.
e970f357 1114 - Added buffered writes for storeWriteCleanLogs() (Stewart
1115 Forster).
1116 - Patches for Qnx4 (Jean-Claude MICHOT).
1117 - Fixed returning void functions which seems to be a GCC-ism.
e5f4e1b0 1118 - New configure script options (Henrik Nordstrom):
1119 --enable-new-storekey=[sha|md5(|url)] (was --enable-hashkey)
1120 --enable-acltree
1121 --enable-icmp
1122 --enable-delay-hack
1123 --enable-useragent-log
1124 --enable-kill-parent (this should be named -hack)
1125 --enable-snmp
1126 --enable-time-hack
1127 --enable-cachemgr-hostname[=hostname] (new)
1128 --enable-arp-acl (new)
1129 - Added Doug Lea malloc-2.6.4 to the distribution, so that
1130 people easily can try a decent malloc package if they syspect
1131 their malloc is broken. --enable-dlmalloc (Henrik Nordstrom).
1132 - Made XMALLOC_DEBUG_COUNT working again. Requires a small stub
1133 function (Henrik Nordstrom).
1134 - Removed top-level Makefile. People must now run 'configure'
1135 before 'make'.
714ace98 1136 - Fixed checkFailureRatio() implementation.
82b3c7d9 1137 - Made 'squid -z' behave like the 1.1 version.
e5f4e1b0 1138
fd82d0b0 1139
ab9a3f7e 1140Changes to squid-1.2.beta10 (Jan 1, 1998):
1141
1142 - Fixed content-length bugs for 204 replies, 304 replies,
1143 and HEAD requests (Henrik Nordstrom).
1144 - Fixed errorAppendEntry() bug in gopherReadReply().
1145 - Basic support for FTP URL typecodes (;type=X).
9c965c1b 1146 - Support for access controls based on ethernet MAC addresses
ab9a3f7e 1147 (Dale).
1148 - Initial URN support; see
1149 http://squid.nlanr.net/Squid/urn-support.html
1150 - Fixed client-side persistent connections for objects with
1151 bad content lengths (Henrik Nordstrom).
1152 - Fixed bad call to storeDirUpdateSwapSize() for objects which
1153 never reach SWAPOUT_DONE state.
68e3a9df 1154 - Fixed up poll() #defines in squid.h (Stewart Forster).
1155 - Changed poll() timeout from 1000 msec to 50 msec for
1156 better performance under low load (Stewart Forster).
e7a1fde6 1157 - Changed storeWriteCleanLogs() to write objects in the LRU
1158 list order instead of the random hash table order.
109ff6af 1159 - Fixed FTP bug when data socket connections fail or timeout.
1160 - Reuse FTP data connection when possible (Henrik Nordstrom).
1161 - Added configure options (Henrik Nordstrom)
1162 --enable-store-key=sha|md5
1163 --enable-xmalloc-statistics
1164 --enable-xmalloc-debug
78743365 1165 --enable-xmalloc-debug-count
1166 --async-io
109203bf 1167 - Fixed confusing with the use/meaning of ERR_CANNOT_FORWARD
1168 by creating ERR_FORWARDING_DENIED and changing the
1169 content of the ERR_CANNOT_FORWARD text.
4e9c07c1 1170 - Fixed pipeline request bug from using strdup() (Henrik
1171 Nordstrom).
1172 - Call clientReadRequest() directly instead of commSetSelect()
1173 for pipelined requests (Henrik Nordstrom).
1b02b5be 1174 - Fixed 4k page leak in icpHandleIMSReply();
1175 - Renamed 'icp*' functions to 'client*' names in client_side.c.
e7a1fde6 1176
b90a0f8d 1177Changes to squid-1.2.beta8 (Dec 2, 1997):
1178
eae03fc8 1179 - Fixed accessLogLog() to log ident from Proxy-Authorization
1180 request header (BoB Miorelli).
226f9ba2 1181 - Fixed #includes, prototypes, etc. in SNMP source files.
1182 - Moved 'POLLRDNORM' and 'POLLWRNORM' macro checks from
1183 include/config.h.in to src/squid.h
1184 - Moved 'num32' typedefs from src/typedefs.h to
1185 include/config.h.in.
1186 - Moved snmplib/md5.c to lib/md5.c.
1187 - Added MD5 cache key support.
1188 - Removed xmalloc() return check in uudeocde.c
1189 - Added 'ifdef' support to cf_gen.c for optional code (e.g. SNMP)
1190 - Changed 'client' program to provide easier cache manager access,
1191 e.g.: 'client mgr:info'
1192 - Fixed 'client' to send 'Connection' instead of 'Proxy-Connection'
1193 for simulated keep-alive requests.
1194 - Removed 'fd' arg from clientProcess* functions.
9e3468d5 1195 - Fixed bugs from using errorSend() on persistent/pipelined
226f9ba2 1196 client connections. A latter request should not be allowed to
1197 write to the client fd until the current request completes.
1198 Now use errorAppendEntry() for such situations.
1199 - Fixed content-length bugs. We were using content-length == 0
1200 to also indicate a lack of content-length reply header. But
1201 'content-length: 0' might appear in a reply, so now use -1 to
1202 indicate that no content length given.
1203 - Split up clientProcessRequest() into smaller chunks so it
1204 might be easier to follow.
1205 - renamed various client_side.c functions to start with 'client'
1206 instead of 'icp'.
1207 - Fixed a 'cbdata leak' from the comm.c close handlers.
1208 - Fixed a 'cbdata leak' from the comm.c connect routines.
1209 - Fixed comm_select() and comm_poll() to stop looping on the
1210 incoming HTTP/ICP sockets. If there are fewer than 7 FD's
1211 ready for I/O, the incoming sockets might not get service, so
1212 comm_select() would be called for up to 7 times until the
1213 'incoming_counter' was incremented enough to trigger a call
1214 to comm_select_incoming(). Now we make sure
1215 comm_select_incoming() gets called if select returns less
1216 than 7 ready FD's.
9e3468d5 1217 - Added errorpage '%B' token to generate FTP URLs with a '%2f'
1218 inserted at the start of the url-path. calls ftpUrlWith2f().
1219 (Henrik Nordstrom).
226f9ba2 1220 - Changed fqdncache.c to use LRU double-linked list instead of qsort()
1221 for replacement and cachemgr output.
1222 - Changed ipcache.c to use LRU double-linked list instead of qsort()
1223 - Changed hash_insert() and hash_join() to return void.
1224 for replacement and cachemgr output.
1225 - Moved StoreEntry->method member to MemObject->method.
1226 - Made StoreEntry->flags 16 bits.
1227 - Made StoreEntry->refcount 16 bits.
1228 - Changed URL-based public cache key to always include the request
1229 method.
eae03fc8 1230
95bc9f0b 1231Changes to squid-1.2.beta7 (Nov 24, 1997):
1232
6a11653c 1233 - Fixed poll() for Linux (David Luyer).
1234 - SHA optimizations (David Luyer).
1235 - Fixed errno clashes with macro on Linux (David Luyer).
1236 - Fixed storeDirCloseSwapLogs(); logs might not be open.
1237 - Fixed storeClientCopy2() bug. Detect when there is
1238 no more data to send for objects in STORE_OK state.
19ee64b1 1239 - Fixed FTP truncation bug when ftpState->size == 0, e.g.
1240 especially directory listings.
95bc9f0b 1241 - Mega FTP fix from Henrik Nordstrom. A better job of
1242 implementing the '%2f' hack.
1243 - Fixed some pipelined request bugs. storeClientCopy() was
1244 being given the wrong StoreEntry, and we had a race condition
1245 which is now handled by storeClientCopyPending().
99077fe6 1246 - Added initial SNMP support.
6a11653c 1247
2c9b45c9 1248Changes to squid-1.2.beta6 (Nov 13, 1997):
1249
1b5516d3 1250 - Fixed Authorized responses getting swapped out when they
1251 don't have Proxy-Revalidate reply header.
1252 - Fixed Proxy Authentication support. We never sent back
1253 a 407 reply, and were incorrectly incrementing the passwd
1254 before comparing it.
1255 - Fixed stat()ing pathnames for default values before parsing
1256 config file (Ron Gomes).
1257 - Fixed logging request and response headers on separate lines
1258 (Ron Gomes).
1259 - Fixed FTP Authentication message (Henrik Nordstrom).
1260 - Changed Proxy Authentication to trigger a reread of the passwd
1261 file if a password check fails (Henrik Nordstrom).
1262 - Changed FTP to retry the first CWD with a leading slash if it
1263 fails without one.
1264
8c17a569 1265Changes to squid-1.2.beta5 (Nov 6, 1997):
1266
90045285 1267 - Track the 'keep-alive ratio' for a peer as the ratio of
1268 the number of replies including 'Proxy-Connection: Keep-Alive'
1269 compared to the number of requests sent. If the peer does
1270 not support Persistent connections then this ratio will tend
1271 toward zero. If the ratio is less than 50% after 10 requests
1272 then we'll stop sending Keep-Alive.
8c3994aa 1273 - Proper support for %nn escapes in FTP, and numerous
1274 other fixes (Henrik Nordstrom).
1275 - Support for Secure Hash Algorithm and framework for other
1276 hash functions as cache keys.
1277 - Fixed SSL snprintf() bug which broke SSL proxying.
1278 - Fixed store_dir swap log bug from reconfigure (SIGHUP).
8c17a569 1279 - Fixed LRU Reference Age bug. The arg to pow() must be
8031bd43 1280 minutes, not seconds.
90045285 1281
9ddfb255 1282Changes to squid-1.2.beta4 (Oct 30, 1997):
1283
a493f974 1284 - Fixed DST bug in rfc1123.c
1285 - Changed default http_accel_port to 80.
1286 - added errorCon() as a ErrorState constructor function
1287 (Max Okumoto).
1288 - Added ERR_FTP_FAILURE message for ftpFail().
1289 - For FTP, the timeout callback must be moved to the 'data'
1290 descriptor when data transfer begins. Otherwise we are
1291 likely to get a timeout on the control descriptor.
1292 - Fixed double-free bug in httpRequestFree().
1293 - Fixed store_swap_size counting bug in storeSwapOutHandle().
1294
409a6aad 1295Changes to squid-1.2.beta3 (Oct 29, 1997):
1296
1297 - Initialize _res.options to RES_DEFAULT in dnsserver.c.
1298 - Fix assertions which assumed 4-byte pointers.
1299 - Fix missing % in fqdncache.c snprintf().
1300
5a2d610b 1301Changes to squid-1.2.beta2 (Oct 28, 1997):
1302
8c3994aa 1303 - Fixed aiops.c and async_io.c so that they actually compile
f5b8bbc4 1304 with USE_ASYNC_IO (Arjan de Vet).
1305 - Fixed errState->errno causing problems with some macros
1306 (Michael O'Reilly).
d287f51e 1307 - Fixed memory leaks in pconn.c (Max Okumoto).
0866009b 1308 - Enhanced 'client' program with 'ping' behaviour (Ron Gomes).
272547b5 1309 - Fixed InvokeHandlers() from calling memCopy() for ALL
1310 store_client's with callbacks. A store_client might be reading
1311 from disk.
5a2d610b 1312 - Rewrote storeMaintainSwapSpace(). No longer will we scan one
272547b5 1313 bucket at a time. Instead we'll maintain a single LRU
1314 list. When an object is 'touched' we move it to the
1315 top of this list. When we need disk space, we delete
1316 from the bottom.
5a2d610b 1317 - Removed storeGetSwapSpace().
f5b8bbc4 1318
871f0b8a 1319Changes to squid-1.2.beta1 ():
1320
1321 - Reworked storage manager to not keep objects in memory during
1322 transit. In other words, no separate NOVM distribution.
1323 - Lots of cleanup and debugging for beta release.
1324 - Use snprintf() everywhere instead of sprintf().
1325 - The 'in_memory' hash table has been replaced with a
1326 doubly-linked list. New objects are added to the head of
1327 the list. When memory space is needed, old objects are
1328 purged from the tail of the list.
1329
0edfe7a2 1330Changes to squid-1.2.alpha7 ():
1331
c4958532 1332 - fixes fixes fixes.
1333 - Made Arjan's PROXY_AUTH ACL patch standard.
0edfe7a2 1334
8905b90c 1335Changes to squid-1.2.alpha6 ():
1336
6684fec0 1337 - Simpler cacheobj implementation.
6605655c 1338 - persistent connection histogram
8872e1f8 1339 - SERVER-SIDE PERSISTENT CONNECTIONS:
1340 - Added pconn.c
1341 - Addec Cofig.Timeout.pconn; default 120 seconds
1342 - Added httpState->flags
1343 - Added flags arg to httpBuildRequestHeader()
1344 - Added HTTP_PROXYING and HTTP_KEEPALIVE flags
1345 - Added 'Connection' to allowed HTTP headers (http-anon.c)
1346 - Added 'Proxy-Connection' to allowed HTTP headers
1347 (http-anon.c)
a7736231 1348 - Merged proxyhttpStart() with httpStart() and created
8872e1f8 1349 new httpBuildState().
1350 - New httpPconnTransferDone() detects end-of-data on
1351 persistent connections.
6684fec0 1352
88738790 1353Changes to squid-1.2.alpha5 ():
1354
1355 - New configuration system. Everything is generated from
1356 'cf.data.pre', including the main parser, setting defaults,
1357 outputting current values, and freeing memory.
1358 This also involved moving some of the local data structures
1359 (e.g. struct _acl *AclList in acl.c) to the Config
1360 structure. (Max Okumoto)
1361 - No more '/i' for regular expressions. Now insert a '-i'
1362 to switch to case-insensitive. Use '+i' for case-sensitive.
1363 - When you have a variable named the same as its type, sizeof()
1364 gets the wrong one (fde).
1365 - Need to flush unbuffered logs before fork().
1366 - Added two fields swap log: refcount and e->flag.
1367 - Removed all the .h files for each .c file. Now #include stuff
1368 is in either: defines.h, enums.h, typedefs.h, structs.h,
1369 or protos.h, globals.h. This greatly reduces dependencies
1370 between the various source files.
1371 - globals.c is generated from globals.h by a Perl script.
8ee3ca2c 1372 - Started customizable error texts.
88738790 1373
97f674c8 1374Changes to squid-1.2.alpha4 ():
1375
ec973719 1376 - New MIME configuration, regular expression based
1377 - Added request_timeout config option
1378 - Multiple HTTP sockets (Lincoln Dale).
1379 - Moved 'fds_are_n_free' check to httpAccept().
1380 - s/USE_POLL/HAVE_POLL/; make poll() default if available.
7e49f700 1381 - Changed storeRegister to use offsets and make immediate
1382 callbacks if appropriate.
1383 - Removed icpDetectClientClose(). Some of that functionality
1384 goes into clientReadRequest() and the rest into
1385 httpRequestFree().
b1b387d1 1386 - Moved IP lookups to commConnect stuff.
1387 - Added support for retrying connect().
858164fc 1388 - New inline debug() macro (David Luyer).
e174e0fe 1389 - Replace frequent gettimeofday() calls with alarm(3) based
1390 clock. Need to add more gettimeofday() calls to get back
a59968c7 1391 high-resolution timestamp logging (Andres Kroonmaa).
0153d498 1392 - Added support for Cache-control: proxy-revalidate;
1393 based on squid-1.1 patch from Mike Mitchell.
ec973719 1394
3b08d32d 1395Changes to squid-1.2.alpha3 ():
1396
1397 - Implemented persistent connections between clients and squid.
1398 - Moved various FD tables (comm.c, fdstat.c, disk.c) to a single
1399 table in fd.c.
1400 - Removed use of FD as an identifier in certain callback
1401 operations (ipcache, fqdncache).
1402 - General code cleanup.
1403 - Fixed typedefs for callback functions.
1404 - Removed FD lifetime/timeout dichotomy. Now we only have
1405 timeouts, however the lifetime concept/keyword may still
1406 linger in certain places.
1407 - Change Makefile 'realclean' target to 'distclean'
1408 - Changed config file parsing of time specifications to use
1409 parseTimeLine().
1410 - Removed storetoString.c
1411
1412Changes to squid-1.2.alpha2 ():
74cebec0 1413
1414 - Merged squid-1.1.9, squid-1.1.10 changes
1415
7b41ec97 1416Changes to squid-1.2.alpha1 ():
1417
1418 - Unified peer selection algorithm.
75e88d56 1419 - aiops.c and aiops.h are a threaded implementation of
1420 asynchronous file operations (Stewart Forster).
1421 - async_io.c and async_io.h are complete rewrites of the old
1422 versions (Stewart Forster).
6ad85e8a 1423 - Rewrote all disk file operations of squid to support
75e88d56 1424 the idea of callbacks except where not required (Stewart
1425 Forster).
75e88d56 1426 - Background validation of 'tainted' swap log entries (Stewart
1427 Forster).
1428 - Modified storeWriteCleanLog to create the log file using the
1429 open/write rather than fopen/printf (Stewart Forster).
1430 - Added the EINTR error response to handle badly interrupted
1431 system calls (Stewart Forster).
6ad85e8a 1432 - UDP_HIT_OBJ not supported, removed.
1433 - Different sized 'cache_dirs' supported.
75e88d56 1434
e924600d 1435==============================================================================