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