]> git.ipfire.org Git - thirdparty/squid.git/blame - ChangeLog
SERVER-SIDE PERSISTENT CONNECTIONS:
[thirdparty/squid.git] / ChangeLog
CommitLineData
6684fec0 1 - Simpler cacheobj implementation.
6605655c 2 - persistent connection histogram
6684fec0 3
88738790 4Changes to squid-1.2.alpha5 ():
5
6 - New configuration system. Everything is generated from
7 'cf.data.pre', including the main parser, setting defaults,
8 outputting current values, and freeing memory.
9 This also involved moving some of the local data structures
10 (e.g. struct _acl *AclList in acl.c) to the Config
11 structure. (Max Okumoto)
12 - No more '/i' for regular expressions. Now insert a '-i'
13 to switch to case-insensitive. Use '+i' for case-sensitive.
14 - When you have a variable named the same as its type, sizeof()
15 gets the wrong one (fde).
16 - Need to flush unbuffered logs before fork().
17 - Added two fields swap log: refcount and e->flag.
18 - Removed all the .h files for each .c file. Now #include stuff
19 is in either: defines.h, enums.h, typedefs.h, structs.h,
20 or protos.h, globals.h. This greatly reduces dependencies
21 between the various source files.
22 - globals.c is generated from globals.h by a Perl script.
8ee3ca2c 23 - Started customizable error texts.
88738790 24
97f674c8 25Changes to squid-1.2.alpha4 ():
26
ec973719 27 - New MIME configuration, regular expression based
28 - Added request_timeout config option
29 - Multiple HTTP sockets (Lincoln Dale).
30 - Moved 'fds_are_n_free' check to httpAccept().
31 - s/USE_POLL/HAVE_POLL/; make poll() default if available.
7e49f700 32 - Changed storeRegister to use offsets and make immediate
33 callbacks if appropriate.
34 - Removed icpDetectClientClose(). Some of that functionality
35 goes into clientReadRequest() and the rest into
36 httpRequestFree().
b1b387d1 37 - Moved IP lookups to commConnect stuff.
38 - Added support for retrying connect().
858164fc 39 - New inline debug() macro (David Luyer).
e174e0fe 40 - Replace frequent gettimeofday() calls with alarm(3) based
41 clock. Need to add more gettimeofday() calls to get back
a59968c7 42 high-resolution timestamp logging (Andres Kroonmaa).
0153d498 43 - Added support for Cache-control: proxy-revalidate;
44 based on squid-1.1 patch from Mike Mitchell.
ec973719 45
3b08d32d 46Changes to squid-1.2.alpha3 ():
47
48 - Implemented persistent connections between clients and squid.
49 - Moved various FD tables (comm.c, fdstat.c, disk.c) to a single
50 table in fd.c.
51 - Removed use of FD as an identifier in certain callback
52 operations (ipcache, fqdncache).
53 - General code cleanup.
54 - Fixed typedefs for callback functions.
55 - Removed FD lifetime/timeout dichotomy. Now we only have
56 timeouts, however the lifetime concept/keyword may still
57 linger in certain places.
58 - Change Makefile 'realclean' target to 'distclean'
59 - Changed config file parsing of time specifications to use
60 parseTimeLine().
61 - Removed storetoString.c
62
63Changes to squid-1.2.alpha2 ():
74cebec0 64
65 - Merged squid-1.1.9, squid-1.1.10 changes
66
7b41ec97 67Changes to squid-1.2.alpha1 ():
68
69 - Unified peer selection algorithm.
75e88d56 70 - aiops.c and aiops.h are a threaded implementation of
71 asynchronous file operations (Stewart Forster).
72 - async_io.c and async_io.h are complete rewrites of the old
73 versions (Stewart Forster).
6ad85e8a 74 - Rewrote all disk file operations of squid to support
75e88d56 75 the idea of callbacks except where not required (Stewart
76 Forster).
75e88d56 77 - Background validation of 'tainted' swap log entries (Stewart
78 Forster).
79 - Modified storeWriteCleanLog to create the log file using the
80 open/write rather than fopen/printf (Stewart Forster).
81 - Added the EINTR error response to handle badly interrupted
82 system calls (Stewart Forster).
6ad85e8a 83 - UDP_HIT_OBJ not supported, removed.
84 - Different sized 'cache_dirs' supported.
75e88d56 85
e924600d 86==============================================================================
7b41ec97 87
88738790 88Changes to squid-1.1.14 (July 11, 1997):
89
90 - Another try at log_url crap. Added icpState->log_url
91 member. Set mem_obj->log_url in new_MemObject() which
92 means passing more args to storeCreateEntry(). Also added
93 urlClean() which calls urlParse(); needed for ICP logging.
94 - Clean URLs will be truncated at '?' if present.
95 - Give fd_note() the clean URL.
96
97Changes to squid-1.1.13 (July 9, 1997):
98
99 - Fixed storeLog() coredump on mem->log_url.
100 - Fixed string bounds bug if a redirector returns a short
101 hostname which require appending 'append_domain' (David
102 Lamkin).
103 - Added 'fake_user_agent' to configuration because HTTP
104 anonymizing strips the User-Agent which some servers require.
105
106Changes to squid-1.1.12 (July 5, 1997):
107
108 - Fixed dnsserver buffer overflow bug and other problems related
109 to long, bogus domain names.
110 - Fixed occasional incorrect ERR_DNS_FAIL errors caused when
111 an IP cache entry gets released about the same time an
112 ICP query timeout occurs.
113 - Fixed setrlimit() bugs seen on DUNIX 4.0; rl.rlim_max == 0.
114 - Only strip 'Proxy-authorization' header when USE_PROXY_AUTH
115 is defined and proxy_auth is configured (Ron Gomes).
116 - Added missing calls to reset socket timeouts for SSL
117 and passthrough requests.
118 - Fixed "Available number of file descriptors" value in
119 cachemgr info output.
120 - Fixed coredump in proxyAuthenticate() if password file
121 has an entry with only a user name (Jordan Hrycaj).
122 - Security patch for usernames and passwords in URLs.
123 + ftpget would insert a BASE URL including the username and
124 password for directory listings IF the original request did
125 NOT include the the trailing slash. This could be disabled
126 with a command line option, but is enabled by default. Now
127 its #ifdefd out.
128 + Usernames and passwords could be logged to access.log and
129 store.log. Now a new element,
130 StoreEntry->MemObject->log_url, holds a copy of the requested
131 URL without the name and password. This isn't 100% fixed yet
132 because log_url gets generated when the StoreEntry gets
133 created. If the StoreEntry never gets created, then the URL
134 with name and password will get logged. Also, the name and
135 password are not stripped from ICP requests. Also, this
136 changes store.log. Previously we logged StoreEntry->key
137 which would look different than the URL for private entries,
138 but now we'll always log the URL.
139 + Finally, we now set REQ_AUTH for any request that includes a
140 name or password. This prevents the request from being
141 cached (!) and prevents it from being sent to neighbor
142 caches. In other words, its treated just as if an
143 Authorization request header were present.
144 - Fixed Byte-Range handling so that valid, whole objects
145 are not released.
146
147Changes to squid-1.1.11 (June 14, 1997):
148
149 - Clean up NeXTStep compiler warnings (Karsten Heinze, Ed Knowles).
150 - Don't forward 'Proxy-Authorization' headers (Chris Pascoe).
151 - Fixed up Host: header parsing (Henrik Nordstrom).
152 - Changed DefaultObjectsPerBucket to 20 in cache_cf.c.
153 - Fixed parsePathname() bug for magic word "none".
154 - Fixed ipcache_release to rename entries which get stuck with locks.
155 - Fixed "eventDelete(peerCheckConnect, e);" bug when the DNS lookup
156 is pending.
157 - Add sys/types.h to lib/safe_inet_addr.c for NeXTSTEP (Timo
158 Hennerich).
159 - Fixed cur_len decrement bug in diskHandleRead()
160 (Michael O'Reilly).
161 - Added contrib/rredir.pl from Peter Eisenhauer.
162 - Always forward requests with 'Byte-Range' headers (Ron Gomes).
163 - Fixed StoreEntry client offset bug which could trigger a
164 fatal_dump().
165 - Fixed noticing that dnsservers have shut down during restart.
166 - Added contrib/nextstep installer package from Gerben Wierda.
167 - Modified storeDirClean() to remove swap files where the
168 number is being used, but the file is in the wrong directory.
169 - Allow PURGE method on all protocols.
170 - Added 'icp_hit_stale' option.
171 - Fixed proxy auth refresh bug (Chris Pascoe).
172 - Don't check for other filename extensions if an FTP URL
173 ends with .txt (Ed Knowles).
174 - Relocated ERR_NO_CLIENT_BIG_OBJ check to eliminate incorrect
175 (but harmless) error message.
176
6ad85e8a 177Changes to squid-1.1.10 (April 24, 1997):
178
179 - Require 0 <= multicast ttl <= 128.
180 - Changed 'unsigned int inaddr_none' to 'struct in_addr no_addr'.
181 - Added debug_trap() if unlocking a StoreEntry which still
182 has registered clients.
183 - Added missing storeUnregister() calls.
184 - Fixed storeClientListAdd() bug of adding same FD twice.
185 - Fixed reconfigure/SIGHUP to wait 'shutdown_lifetime' seconds
186 after receiving signal (Ron Gomes).
187 - Added missing commSetSelect() in icpDetectClientClose()
188 (Mark Treacy).
189 - Fixed multicast group member counting bug with fake
190 StoreEntry's.
191 - Only enable ICP_FLAG_SRC_RTT if the peer is ICP_VERSION_2.
192 - Fixed compiling unlinkd in a separate directory (Assar Westerlund).
193 - Fixed comm_select_incoming SEGV for poll() version when using
194 udp_{incoming,outgoing}_address (Mark Treacy).
195 - Fixed some SIGHUP related memory problems with redirectors,
196 ipcache, and fqdncache, and peerCountMcastPeers*().
197 - Make the unlinkd and pinger programs configurable (Ron Gomes,
198 Neil Murray).
199 - Add handshake to unlinkd program (Ron Gomes).
200 - Exit if a configured program doesn't exist (Neil Murray).
201 - Abort if unlinkd fails to start (Ron Gomes).
202 - Added -m option to ftpget for defining default MIME type.
203 (Neil Murray).
204 - Optimized comm_select() functions (Mark Treacy).
205 - Fixed ipcache_release() to not release locked entries;
206 instead expire them immediately.
207 - Fixed up rebuild code to handle swapfile/URL clash
208 cases better.
209 - Added safe_inet_addr() to protect from bogus IP addresses
210 (Arjan de Vet).
211 - Fixed handling of ssl_proxy and passthrough_proxy when not
212 behind a firewall.
213
214
215Changes to squid-1.1.9 (March 30, 1997):
216
217 - Fixed aclIpNetworkCompare for USE_SPLAY_TREE; was applying
218 netmask to non-local variable through pointer. (Ansgar
219 Hockmann).
220 - Fixed cachemgr bug incorrectly assigning connect() return
221 value (Nigel Metheringham).
222 - Fixed diskHandleWrite bug: not setting write_daemon = PRESENT.
223 - Fixed situation where all requests would be handled by
224 "single parent" and other peers would never be queried
225 again.
226 - Fixed ftpget bug causing program to continue after printing
227 usage.
228 - Changed 'reference_age' to be the maximum for the dynamcially
229 computed value (Mark Treacy).
230 - Added external 'unlinkd' process to unlink swap files.
231 - Added more dnsserver status information to cachemgr output.
232 - In httpReadReply: extend FD lifetime only after successful
233 read, not every read.
234 - In httpBuildRequestHeader: link size of 'ybuf' to MAX_URL.
235 - Added routines to count number of members of each multicast
236 peer.
237 - Fixed multicast ICP bug causing unnecessary timeouts.
238 - Added error messages if setuid/setgid functions fail.
239 - Added non-POSIX tempnam.c replacement for NeXTStep (Gerben
240 Wierda).
241 - Removed redundant file:// --> ftp:// check (Willy TARREAU).
242 - Removed check for reply->code == 200 in icpGetHeadersForIMS().
243 - Fixed IP cache bug which caused 'dns_children 0' to break;
244 - Deny access to dangerous TCP ports (7, 9, 19).
245 - Removed single-line functions: fdstat_biggest_fd(),
246 comm_get_fd_lifetime(), comm_get_fd_timeout().
247 - Removed storeCheckExpired() from storeGetSwapSpace() as
248 likely cause of slowing down cache when exceeding the high
249 water mark.
250 - Fixed storeCheckExpired() to not always check the
251 LRU expiration age (Mark Treacy).
252 - Lowered 'store_objects_per_bucket' to 20 so that
253 storeMaintainSwapSpace() runs frequently enough to
254 keep up with incoming objects.
255 - Fixed FTP to use the Authorization header only when the
256 usernames match.
257 - Fixed another continuation-lines-not-starting-with-NNN bug
258 in ftpget.
259 - Added 'client_db' config option to disable keeping statistics
260 for each client address.
261 - Added support for using ICMP data stuffed into ICP replies
262 for peer selection algorithm. Enable with 'query_icmp'
263 in squid.conf.
264 - Fixed net_db design bug where _net_db_peer structures pointed
265 to 'peer' structures that get freed and reallocated during a
266 reconfigure.
267 - Moved comm.c fd_lifetime[] array into FD_ENTRY structure.
268 - Cleaned up storeCopy(). debug_trap on requested offset <
269 e_lowest_offset.
270 - Cleaned up fdstat_init() and fdstat_update().
271 - Cleaned up ftp_login_parser().
272
e924600d 273Changes to squid-1.1.8 (March 3, 1997):
274
275 - Fixed neighborsUdpAck() coredump bug for source-ping and
276 non-peer ICP replies.
277 - Prevent ipcache_gethostbyname from changing an IP_DISPATCHED
278 entry to IP_CACHED; fqdncache too.
279 - Made send_announce non-blocking.
280 - Force release of negative-cached objects upon receipt of
281 no-cache request.
282 - Ignore ACLs which fail to parse.
283 - Added 'proxy_auth_ignore' regular expression list (Andreas
284 Lamprecht).
285 - Changed how failed TCP connections affects peer up/down
286 status. Now retry TCP connections at regular intervals in the
287 background and don't mark the peer as 'up' until a connection
288 succeeds.
289 - Okay to increase FD_SETSIZE on FreeBSD 2.2.x (Peter Wemm).
290 - Fixed HTTP anonymizer bug in 'standard' mode.
291 - Fixed aclMatchDomainList() coredump for unresolvable addresses.
292 - Changed default disk low/high water marks to 90/95%.
293 - Prevent ftpget buffer overflow (Riku Saikkonen).
294
295Changes to squid-1.1.7 (February 25, 1997):
468c23d3 296
6ad85e8a 297 - Fixed non-default port numbers for FTP URLs (John Saunders).
468c23d3 298 - Fixed urlParse to leave trailing slashes on FTP URLs. Although
299 stripping the slashes offers a slight hit rate increase, it
300 breaks some proxies which return HTTP redirects.
301 - Initialize struct tm in parse_rfc1123() (Henrik Hempelmann).
302 - Fixed parseHttpRequest() to use memcpy instead of strncpy;
303 caused POST's with NULL bytes to fail (Joe Ramey).
304 - Fixed another HTTP reply code 0 bug (Neil Murray).
305 - Changed code structure in ipcache_nbgethostbyname() to
306 maybe get around some trashed-stack problems.
307 - Added WARNING if blocking gethostbyname() gets called.
308 - Fixed calling commSetSelect() with FD < 0 bug in ssl.c and
309 pass.c.
2ec29a62 310 - Moved 'append_domain' operation to urlParse().
311 - Fixed too many arguments bug in diskHandleWrite, caused
312 coredumps when write fails (due to full disk).
77f33b26 313 - Fixed extra unlocking on partial reads from dnsservers.
314 - Fixes for 'Splay' trees in acl.c (Ed Knowles)
315 - Support for balanced binary trees in acl.c (Arjan de Vet).
91de5d47 316 - Made HTTP anonymizing a standard feature and settable in
317 squid.conf (disabled by default).
4dcdb109 318 - Ignore ICP_MISS replies from multicast-responding parents
319 which would violate the domain restrictions.
320 - Fixed another diskHandleWrite coredump bug when freeing
321 list of pending blocks.
322 - Added support for 'src' ACLs in cache_host_acl lines.
c7686fee 323 - Fixed ftpget bug when PASV connect times out.
324 - Fixed adding duplicate IP cache entry for failed BLOCKING lookups.
325 - Changed peer IP addresses (for ICP) to be refreshed every hour.
326 - Accomodated Solaris bug requiring suid privs for getrusage()
327 (Arjan de Vet).
468c23d3 328
678d8a69 329Changes to squid-1.novm.6 (February 7, 1997):
330
331 - Merged squid-1.1.6 changes.
332
870bd0f9 333Changes to squid-1.1.6 (February 7, 1997):
1febb85b 334
335 - Fix redirector to make sure the redirector child process is
336 is alive and not busy before using it (Brent Foster).
337 - Fixed ACL joining bug.
870bd0f9 338 - Fixed up support for multicast; see Release Notes for
339 details.
1febb85b 340 - Fixed ftpget to properly handle multi-line replies that
341 don't begin with "NNN-".
342 - Changed store maintenance to randomize bucket order
343 each time after completion.
344 - Set RLIMIT_VMEM to the maximum.
345 - Syntax change: "edge" to "peer" everywhere.
346 - Change redirector stats to also show number of rewritten
347 requests (Andrew Humphrey).
348 - Changed HTTP anonmyizing to remove 'denied' headers
349 by default. Define USE_PARANOID_ANONYMIZER to only pass
625917ea 350 'allowed' headers instead (Bernd Ernesti).
870bd0f9 351 - Added 'Splay' trees (in #ifdefs) for fast IP access checking
352 (Ed Knowles).
1febb85b 353 - Fixed 'COMM_INPROGRESS' typo bug (Balint Nagy Endre).
354 - Added support for PURGE method to remove cached objects.
355 - Upgraded scripts/check_cache.pl for v1.1 (Bertold Kolics).
356 - Fixed announcement file descriptor leak (Balint Nagy Endre).
357 - Fixed [^0-9] sscanf bug for some compilers (Jim Carroll).
358 - Upgrade to autoconf-2.12
625917ea 359 - Added 'dns_defnames' option to allow dnsserver to interpret
360 single-component hostnames.
625917ea 361 - Refuse to run as root without defining 'cache_effective_user'.
1febb85b 362
870bd0f9 363Changes to squid-1.novm.5 (February 6, 1997):
c95a0781 364
365 - Fixed stuck objects (and FD leak) due to not unlocking
366 objects in storeAbort().
cab88bee 367 - Merged squid-1.1.5 changes.
4b7f7b84 368
625917ea 369Changes to squid-1.1.5 (January 22, 1997):
e3a664b4 370
bb97dd37 371 - Fixed ACL parsing to join ACL entries with the same name
372 (Markus Stumpf).
373 - Fixed BIT_SET/BIT_TEST typo in getDefaultParent() (Ed Knowles).
374 - Removed comm_read() and commHandleRead().
375 - Fixed rotating special files (Kolics Bertold).
376 - Fixed sending HTTP reply code 0 in error messages.
377 - Fixed ftpget to recognize 'NetWare' servers and skip whitespace
378 before filenames.
379 - Changed ftpget default Content-Type to application/octet-stream.
380 - Added .rpm MIME type (Nigel Metheringham).
381 - Changed storeDirClean() to create missing directories.
61ba670d 382 - Removed icpState->buf and storeCopy() call in icpGetHeadersfForIMS().
e3a664b4 383 - Fixed *_ip_list parsing bug (Hiroyuki Inoue).
384 - Fixed bad comm_write() calls in passStart() and sslStart()
385 (Martin Boening).
7fd2a4e7 386 - Changed storeMaintainSwapSpace() to scan hash table buckets in
387 random order.
388 - Added dynamic LRU Age expiration feature. Expiration age is
389 calculated as a function of store_swap_size so that object
390 deletion rate matches the addition rate and we avoid emergency
391 object purge mode.
bb97dd37 392
625917ea 393Changes to squid-1.novm.4 (January XX, 1997):
d3954477 394
395 - Fixed storeRegister loop in icpHandleIMSReply().
1f5ec3ed 396 - Merged squid-1.1.4 changes.
d3954477 397
3e65cb76 398Changes to squid-1.1.4 (January 13, 1997):
115c7870 399
400 - Created USE_GNUREGEX define to fix forcing GNU regex on
401 Solaris and NeXTStep.
402 - Changed SQUID_MAXFD to be a C variable.
403 - Added QUICKSTART file.
404 - Fixed ident so the identd request comes from the same IP
405 address as the original connection was made to (Russell
406 Street).
407 - Added '!' condition feature for the 'firewall_ip' list
408 (Hiroyuki Inoue).
409 - Added 'udp_hit_obj_size' option (Mark Treacy).
410 - Fixed cachemgr.cgi to print 'NEVER' instead of '27Y ago'.
3e65cb76 411 - Fixed finding FTP end-of-transfer marker in the middle
412 of the file.
413 - More ipcache fixes for long-pending requests which get preempted.
62a0995a 414 - Fixed cachemgr.cgi to parse password from URL (Peter Wemm).
415 - Fixed cachemgr.cgi to keep password in HTML form field (Peter
416 Wemm).
417 - Fixed reporting Maximum Resident Size (Peter Wemm).
418 - Handle unexpected data from a redirector (Brent Foster).
115c7870 419
420Changes to squid-1.novm.3 (January 7, 1996):
03c91395 421
422 - Merged squid-1.1.3 changes.
423
424Changes to squid-1.novm.2 (January 7, 1996):
425
426 - Mega changes to make Squid not store objects in VM.
74946a0f 427
9a325041 428Changes to squid-1.1.3 (January 7, 1997):
c92978ac 429
7a77c4b4 430 - Changed inet_addr("X") to inet_addr("255.255.255.255")
431 (Dan Riley).
432 - Fixed matchInsideFirewall() bug when using 'firewall_ip' but
433 not 'inside_firewall' (Tai Jin).
434 - check for text == NULL in icpSendERROR().
435 - Don't make inaddr_none static in ftpget.c (Davide Migliavacca).
436 - Fixed ipcache FMR bug for long-pending requests.
437 - Fixes for NeXTSTEP 3.3 (Tethpub Znek).
438 - add storeWriteCleanLog() call in fatal().
439
75a4803a 440Changes to squid-1.1.2 (December 18, 1996):
441
e12ec0cc 442 - Fixed (negative) caching of HTTP objects witch consist of
443 only some HTTP headers.
444 - Fixed up SSL neighbor selection algorithm to be just
445 like the one in pass.c.
446 - Fixed incorrect squid.conf comment about setting an objcache
447 password to 'none'. Added keyword 'disable' to disable an
448 objcache function (Markus Gyger).
449 - Further Cache.Announce.on fixes (Ernest Yik).
450 - Add theOutIcpConnection to comm_select_incoming() for improved
451 ICP performance (Stewart Forster).
452 - Added access.log documentation to Release-Notes-1.1.txt
453 - Added support for TRACE method.
c1827ffa 454 - Added 'log_icp_queries on|off' to config (David Luyer).
455 - Added hierarchy tag to common HTTP format access.log (David Luyer).
e12ec0cc 456 - Moved second SQUID_MAXFD/FD_SETSIZE check to after #includes.
457 - Added reverse DNS lookups for 'dstdomain' ACLs when the URL
458 contains an IP address.
459 - Made HTTP reply header parsing more robust to deal with
460 bad 304 replies from squid-1.1.beta27 and earlier.
c1827ffa 461 - Changed reqnum passed in ICP replies to encode request method
462 in high byte.
58e7e5cc 463 - Fixed neighbor round-robin bug (Uwe Doering).
464 - Calculate accurage percentages for ICP and HTTP requests in
465 cachemgr 'client list'.
466 - Fixed refresh lm-factor calculations to allow percent = 0.
467 - Make sure DNS lookups don't remain PENDING for a very long time.
e12ec0cc 468
04279aad 469Changes to squid-1.1.1 (December 15, 1996):
e119289e 470
471 - Fixed announcement bug. Announcements were always off unless
472 a file was specified.
473 - Fixed wrong number of args to examine_select() debug.
474 - Fixed null-string content-type
475 - Don't cache replies with 'Set-Cookie:' headers.
476 - Fixed bug when client issues IMS, Squid has stale object and
477 Squid's lastmod time is greater than the client IMS time.
478 A 304 reply would be appropriate for Squid, but not the client
479 (diagnosed by Mark Treacy).
480 - Fixed httpBuildRequestHeader() content length bug which breaks for
481 really large POST requests (Takahiro Yugawa).
482 - Fixed 'passthrough_proxy' to pick up port number from list of
483 neighbors.
6f4d3ac9 484 - Ensure pid file is world-readable if umask is set otherwise
485 (Doug Urner).
04279aad 486 - Collect statistics on a few more HTTP headers (Ed Knowles).
e119289e 487
2b17a56e 488Changes to squid-1.1.0 (December 6, 1996):
489
490 - Fixed inequality bug in neighborUp().
491 - Fixed off-by-one ack_deficit bug in neighborUp() (Joe Ramey).
492 - Fixed pfds[] ABW bug for USE_POLL (Joe Ramey).
493 - Added anonymizer options; compile with USE_ANONYMIZER (Lutz
494 Donnerhacke).
495 - Added Gauntlet proxy support to ftpget (Mukaigawa Shin'ichi).
c62bf0f1 496 - Changed UDP_HIT_OBJ to be disabled by default.
2b17a56e 497 - Updated doc/Release-Notes-1.1.txt
498
499==============================================================================
500
74313381 501Changes to squid-1.1.beta28 (December 5, 1996):
502
8fa71551 503 - Fixed missing CR on Not-Modified replies (Balint Nagy Endre)
504 - Fixed not truncating multi-word content-types.
505 - Fixed ABR bug due to too-small redirector buffers.
506 - Fixed ABR in httpBuildRequestHeader().
1baa4e8a 507 - Removed asynch_io code.
8fa71551 508
4945cebf 509Changes to squid-1.1.beta27 (December 4, 1996):
510
511 - Fixed wrong number of args to debug().
512 - Make failure to start any dnsservers fatal.
513 - Fixed dnsGetFirstAvailable() to skip dead dnsservers.
514 - Fixed loop detection for two squids on the same host (Mark
515 Treacy)
516 - Fixed strcasecmp bug which broke some POST requests.
517
9e393211 518Changes to squid-1.1.beta26 (December 3, 1996):
89659cff 519
dcfe6390 520 - Another 'rm -rf' fix for store.c (Bernd Ernesti).
521 - Use of the Host: header for httpd_accel requests is now
522 disabled unless 'httpd_accel_uses_host_header' is set.
523 - Have configure check for libgnumalloc.a.
89659cff 524 - Added support for using poll() instead of select(); enable
525 USE_POLL_OPT in src/Makefile (Stewart Forster, Anthony
526 Baxter).
527 - Fixed httpBuildRequestHeader() 'strcat' bug (Andres Kroonmaa).
528 - Changed store.log to include date, last-modified, and
529 expires timestamps, plus content-type.
530 - Added content-type to access.log too.
531 - parse HTTP timestamps directly in httpParseReplyHeaders().
532 - moved timestampsSet() to storeTimestampsSet().
533 - fixed ACL '/32' bug (Ansgar Hockmann).
dcfe6390 534
3ac5bf55 535Changes to squid-1.1.beta25 ():
536
575e5b1a 537 - Check if we should delete-behind large objects when above LOW
538 water mark.
3ac5bf55 539 - Merged request header parsing code from http.c and pass.c
540 into httpBuildRequestHeader().
575e5b1a 541 - Fixed 'rm -rf' command in store.c.
542 - Changed viz_hack stuff to use multicast.
3ac5bf55 543
c5a0c043 544Changes to squid-1.1.beta24 ():
545
546 - Added 'cache_stoplist_pattern' to squid.conf
547 - Remove trailing slashes from FTP URLs.
548 - Added 'passthrough_proxy' support.
1bc5033b 549 - Added "default parent" support with a 'default' option for
550 cache_host config line.
1a10e02d 551 - Upgraded autoconf to 2.10.
6b98c7ae 552 - Strip Proxy-Connection request headers.
1bc5033b 553 - Do not return UDP_HIT for objects which will soon be stale.
554 - Parse/Filter HTTP request headers in passthrough module.
555 - Fixed parsing hostnames with dashes in 'src' ACLs.
556 - Added warning message when forwarding loops detected.
557 - Split getSingleParent() into getSingleParent() and
558 neighborsCount().
99fcf739 559 - Dont check sibling caches for REFRESH requests.
560 - Add X-Forwarded-For: header which is the comma-separated
561 list of client addresses along the request path.
562 - Fixed icpDetectClientClose() to check if Content-Length
563 bytes have been delivered.
c5a0c043 564
4f4905f1 565Changes to squid-1.1.beta23 (November 25, 1996):
566
7acb0b24 567 - Fixed "viabuf" memory leak.
4f4905f1 568
ef97e96c 569Changes to squid-1.1.beta22 (November 25, 1996):
570
6219258f 571 - Fixed xstrncpy() bug in mime_get_header().
572 - Fixed Via: header.
573 - Fixed Host: header for proxy requests.
574 - Fixed re-initializing client_db and net_db hash tables upon
575 SIGHUP (Cord Beermann).
576 - Mucked with regex stuff so HP users don't have to put up with
577 GNUregex (Markus Gyger).
578 - Changed SQUID_MAXFD back to FD_SETSIZE.
579 - Fixed checking Max-age in httpSendRequest().
580 - Made failure to fork ftpget fatal.
581 - Call *FreeMemory() routines only if debugging.
582
96e84919 583Changes to squid-1.1.beta21 (November 22, 1996):
584
431d84c5 585 - Fixed setting entry->timestamp for NOT MODIFIED replies.
586 - Changed old HTTP/1.1 Forwarded: header to new Via:.
431d84c5 587 - Fixed needlessly calling storeSwapFullPath() in
588 storeSwapOutHandle() (Mark Treacy).
589 - Simplified hash linking (Mark Treacy).
590 - Write pid_filename by default (Markus Gyger).
591 - Changed "Invalid dnsserver output" to non-fatal debug_trap()
592 (Joe Ramey).
593 - Changed STORE_IN_MEM_BUCKETS to the prime 229 (Neil Murray).
59b9e1b4 594 - Changed FD_SETSIZE to SQUID_MAXFD (Jonathan Larmour).
595 - Strip :port from Host: header if present.
596 - Reschedule fqdncache_dnsHandleRead() to prevent dnsservers
597 from getting stuck (Makoto Ishisone).
598 - Fixed handing SSL requests inside firewalls (Akira Sato).
599 - Fixed passthrough neighbor selection bug (Akira Sato).
600 - Removed 'post_buf' stuff from http.c.
6982963c 601
431d84c5 602Changes to squid-1.1.beta20 (November 17, 1996):
58336fe1 603
604 - Changed neighbor_domain_type to neighbor_type_domain in
605 squid.conf.
58336fe1 606 - Changed all 'xstrerror' debug messages to section 50.
607 - More const fixes (Markus Gyger).
608 - Added xstrncpy() which null-terminates (Markus Gyger).
8ea68e8d 609 - Fixed Cache-Control counting in HTTP reply header stats.
85ec1ab9 610 - Relocated rfc1738_unescape() calls in ftpget so that
611 ftp://foo.org/%2fbar/ works (Jonathan Larmour).
396b6d21 612 - Fixed forwarding loop for a pair of neighbors behind a firewall.
613 - Cleaned up ftpget non-blocking flags (Jean-Hugues ROYER).
58336fe1 614
3f7009a3 615Changes to squid-1.1.beta19 (November 13, 1996):
616
4621df3e 617 - Fixed havoc-wreaking getsockname() bug (Noriyuki Soda
618 <soda@sra.co.jp>).
3f7009a3 619 - Fixed InvokeHandlers() debug_trap bug.
620 - Lock entry while calling swapin handler in case someone tries to
621 release it.
622 - Changed configure to allow overriding of XTRA_LIBS in config.site.
4621df3e 623 - Fixed comm_accept() FMR bug.
624 - Replaced MemObject->fd_of_first_client structure member with
625 storeFirstClientFD() function.
3f7009a3 626
fe26d5d1 627Changes to squid-1.1.beta18 (November 13, 1996):
628
629 - Fixed 'void *buf' bug icpCreateMessage() (Jean-Hugues ROYER).
630 - Fixed more NULL 'friends' bugs.
631 - Added debug_trap for NULL mem->clients in InvokeHandlers()
632 (Mark Treacy).
633
4a45acc4 634Changes to squid-1.1.beta17 (November 12, 1996):
635
636 - Fixed NULL friends coredump in neighbors_open().
637 - Added setting HAVE_TEMPNAM back to the configure script.
638 - Fixed h_errno bug on NeXTStep (frank@langen.bull.de).
639 - Fixed expiresMoreThan() bug causing all UDP_MISS replies.
640 - Changed 'background.c' to 'event.c' and merged all periodic
641 functions into an event queue.
642 - Renamed httpParseHeaders() to httpParseReplyHeaders().
643 - Added support for sending HTTP/1.1 'Cache-Control: max-age=X'
644 in requests. The max-age value is taken from the
645 'refresh_pattern' rules.
646 - Added support for parsing max-age in client request.
647 - Split icpUdpSend() into simpler icpUdpSend() plus
648 icpCreateMessage().
649 - Force storeAbort() for dispatched objects in
650 asciiLifetimeHandle().
651 - Fixed firewall-related bug when the DNS lookup fails.
652 - Fixed '#define HAVE_GETRUSAGE' bug (Takahiro Yugawa).
653 - Made storeStartDeleteBehind() quiet for 'no-proxy' neighbors.
654 - Fixed log_quote() signed/unsigned bug (Ron Gomes).
655
f39d06a2 656Changes to squid-1.1.beta16 (November 8, 1996):
9d98b6ba 657
658 - Fixed type of Config.level{One,Two}Dirs.
659 - Fixed calling storeRegister and storeUnregister with NULL a entry.
660 - Fixed objcache "squid.conf" request and now require a
661 password for it (Jan.Harkes@cwi.nl).
662 - Added check for dotted-quads in matchInsideFirewall()
663 (Andreas Lamprecht).
664 - Fixed up some HTTP/1.1 Cache-Control parsing (Ed Knowles).
665 - Fixed IP ACL memset() bug when -DPURIFY=1.
666 - Resurrected storeEntryValidToSend().
667 - Moved storeSetPrivateKey() calls to storeReleaseRequest().
668 - Added separate config line (neighbor_type_domain) for modifying
669 neighbor type (parent vs. sibling) for certain domains. Adding
670 it to cache_host_domain doesn't provide needed flexibility.
671 - Added User-Agent log patch (Joe Ramey).
672 - Added httpd-accel Host: patch (Miguel A.L. Paraz).
673 - Changed ident lookup stuff to require the lookup before
674 checking ACL's. If you have 'ident_lookup on' then this
675 may cause noticable delay while waiting for the ident
676 lookup.
2a88be88 677 - Fixed storeSwapOutHandle() FMR bug.
4a45acc4 678 - Stopped inserting incorrect Host: header for proxy-HTTP requests.
9d98b6ba 679
86b61a3f 680Changes to squid-1.1.beta15 ():
681
682 - Fixed entry->clients[].fd initialization bug causing all
683 large objects to get stuck.
193efd1c 684 - Changed /www.nlanr.net/Squid/ to /squid.nlanr.net/Squid/.
86b61a3f 685
f71d7952 686Changes to squid-1.1.beta14 ():
687
688 - Added pw_encrypt() check to configure.
689 - Added 'cache_stop_relist' for a regular expression based
690 stoplist.
691 - Fixed checkRefresh() to not cause IMS request for objects
692 which have not yet expired, but are past the LM-factor.
693 - Fixed asciiConnLifetimeHandle() to force storeAbort() for
694 pending objects.
0ee4272b 695 - Made lots of variables and args 'const' (Markus Gyger).
f836f80d 696 - Added cachemgr password support in squid.conf (Yaroslav M.
697 Levchenko). Each cachemgr operation may have a separate
698 password. Shutdown and all "log" operations must be
699 password-protected.
700 - Removed debug_trap() calls in squid_error_entry().
701 - Removed InvokeHandlers() call from StoreAbort().
0230ad3e 702 - Added icpHandleAbort() to deliver abort messages, if at all.
ae7d848d 703 - Added passthrough module (pass.c) for POST, et. al.
650c98da 704 - Fixed purify bugs in storeCloseLog() and storeSwapInHandle().
0230ad3e 705 - Merged store 'pending list' into 'client list.'
6982963c 706 - Made number of first- and second-level swap directories
707 configurable (Ralph Loader).
f71d7952 708
9c1d8929 709Changes to squid-1.1.beta13 (November 1, 1996):
710
861f7d39 711 - Fixed base64_code[] typo bug (Joe Ramey).
712 - Fixed errors being returned as empty objects.
713 - Changed order of sanity checks in neighborsUdpAck().
9c1d8929 714 - Made swap log pathname configurable with 'store_swap_log'.
715 - Made 'http_accel virtual 80' same as -V on command line.
716 - Fixed string termination bug in base64_decode() (Joe Ramey).
861f7d39 717
55b34d8e 718Changes to squid-1.1.beta12 (October 31, 1996):
727348b4 719
720 - Fixed ICMP 'pinger' failure detection.
721 - Fixed handling of no-cache for negative-cached objects.
55b34d8e 722 - Replaced protoUnregister() call in icpDetectClientClose().
723 - Fixed calling storeReleaseRequest() on unlocked objects.
727348b4 724
21da08b3 725Changes to squid-1.1.beta11 (October 29, 1996):
0d3b2381 726
b5cc294e 727 - Fixed rfc1123() to use actual RFC1123 time format.
728 - Made Store Hash parameters configurable
729 - store_objects_per_bucket
730 - store_avg_objects_size
731 - Fundamental changes to object TTLs; now think in terms of
732 refresh times. Replaced 'ttl_pattern' with 'refresh_pattern'.
733 - Dropped 'http', 'ftp', and 'gopher' config options.
734 - Added a single 'maximum_object_size' value.
735 - Moved storeStartDeleteBehind() calls from http/ftp/gopher to
736 storeAppend().
737 - Moved storeClientListAdd() call from store to client/icp
738 because of storeClientCopy() race condition between IMS
739 replies and objects in delete behind mode.
740 - renamed TCP_EXPIRED* to TCP_REFRESH*.
741 - Stopped appending error messages to partially delivered
742 objects.
e7aa3d17 743 - Removed protoUnregister() call in icpDetectClientClose()
744 as probable cause of storeReleaseRequest() warnings.
b5cc294e 745
e2971793 746Changes to squid-1.1.beta10 (October 24, 1996):
91b74eb8 747
748 - Fixed neighborsUdpAck() coredump bug and made debug messages
749 more consistent.
750 - Removed old REQ_ACCEL test (Miguel A.L. Paraz)
751 - Fixed process RSS value for SGI (Ed Knowles).
752 - Fixed parseAddressLine() to use gethostbyname(3) because
753 its called before ipcache_init(). (Miguel A.L. Paraz)
754 - Fixed announce bug since beta7 causing caches to be announced
755 regardless of 'announce_to' setting. (Paul Southworth)
756 - Fixed pinger 'last_check_time' bug.
757 - Changed storeEntry->flag and storeEntry->refcount back to
758 32-bit ints.
759 - Removed extra "\r\n" for abort error messages.
760 - Numerous hash fixes from Mark Treacy.
360f7bea 761 - Renamed rfc850 to rfc1123.
e2971793 762 - Changed storeRelease to not make recursive call for HEAD
763 objects.
764 - Changed return value semantics of storeRelease().
91b74eb8 765
1a1ca352 766Changes to squid-1.1.beta9 (October 21, 1996):
767
768 - Added 'make depend' target to Makefiles.
769 - Fixed changing the wrong instance of 'opt_catch_signals'
1baa4e8a 770 in tools.c for beta8.
1a1ca352 771 - Fixed xmemcpy macros in include/config.h (Ed Knowles).
1fb83a91 772 - Fixed logging of "TCP_EXPIRED_MISS/304."
1a1ca352 773
5ecceaa4 774Changes to squid-1.1.beta8 ():
775
776 - Added client_db.c; keeps stats on clients, use cachemgr
777 to view client list.
778 - Stop sending ICP_OP_DENIED to clients if 95% of their
779 queries are denied (then they'll think we're dead).
366b96f1 780 - Fixed objects getting stuck in VM when handling aborted
781 requests in icpHandleIMSReply().
a4be6552 782 - If IMS verification fails, send the old object and log it
783 as TCP_EXP_FAIL_HIT.
784 - Added Host: header to HTTP requests.
10660f97 785 - Disable dnsservers with 'dns_children 0' in the config file.
786 - Disable ftpget with 'ftpget_program none' in the config
787 file. Also ftpget is disabled for http_accel mode.
6211a7c1 788 - Changed cachemgr stats/objects listing format.
789 - Added some missing "entry->refcount++"
790 - Changed StoreEntry->timestamp to be the last verification time.
791 (was the stored-on-disk time).
792 - Fixed stuck objects from "304 Not Modified" responses without
793 final blank line.
794 - Added failure detection to icmpRecv().
0b6d1622 795 - Fixed backwards logic in debug_trap().
72827a42 796 - Fixed neighbor caches remaining in 'DEAD' state. Reorganized
797 handling ICP replies so neighborsUdpAck gets called for
798 most every reply.
5ecceaa4 799
19037ac2 800Changes to squid-1.1.beta7 (October 14, 1996):
6ac8a46c 801
802 - Combined and renamed comm_set_select_handler() functions.
e2b8bf57 803 - Fixed netdbPingSite() not checking n->next_ping_time.
804 - Fixed acl.c to use regular gethostbyname() because IP cache
805 isn't initialized while reading config file.
806 - Linked ftpget with debug.o and removed lib/debug.c,
807 lib/log.c.
19037ac2 808 - Fixed matchDomainName() coredump for late ICP packets.
809 - Removed date string from syslog messages.
810 - Fixed ftpget BASE HREF.
811 - Fixed pinger to check squid socket every 10 seconds.
6ac8a46c 812
e90100aa 813Changes to squid-1.1.beta6 ():
814
815 - Fixed lots of function prototypes, etc (Ed Knowles).
816 - Added multicast patch (Martin Hamilton).
e2b8bf57 817 - Replaced 'struct hostent' with 'struct ipcache_addrs' in IP
818 cache.
cafd0944 819 - Added ipcacheCycleAddrs() to round-robin IP addresses.
e2b8bf57 820 - Added ipcacheRemoveBadAddr() to remove addresses from failed
821 connect()'s.
822 - Changed comm_connect() to comm_nbconnect() and removed other
823 nonblocking connection handling code from other modules.
824 - Improved cache memory usage. Now cache_mem specifies the
825 size of the in-memory data pool. Hot objects use whatever
826 space is not used by in-transit objects.
cafd0944 827 - Removed 'max_hot_object_size' config option.
828 - Fixed virtual-host coredump bug (Aaron Hopkins).
e90100aa 829
300acab6 830Changes to squid-1.1.beta5 (October 7, 1996):
831
832 - Fixed coredump in storeFreeMemory().
833 - Fixed displaying repeated IP addresses in IP cache contents.
834 - Added parent/sibling modifiers to cache_host_domain lines.
835 - Added 'miss_access' to restrict fetching HTTP MISS requests.
836 Use this to force your peer caches to use you as a sibling and
837 not as a parent.
838 - Added browser ACL patch (Carson Gaspar).
839 - Added reading ACLs from file patch (Arjan de Vet).
6d2296d4 840 - Squid-1.0 changes up to 1.0.18.
ee1d3cec 841 - Added release/cleanup functions to net_db.c.
7efcb4b8 842 - Added 'minimum_direct_hops' config option.
300acab6 843
0ac25a67 844Changes to squid-1.1.beta4 (September 26, 1996):
67508012 845
846 - Fixed coredump in icpStateFree() when calling
847 checkFailureRatio().
848 - Added more stuff to net_db.c.
849 - Fixed memory leak in stat_ipcache_get().
850 - Changed __P back to _PARAMS.
9d90e665 851 - Fixed authorization parsing bug in ftp.c (Yoichi Shinoda).
852 - Allow ICP socket on priveledged ports.
853 - Added trap for STORE_PENDING objects when lock_count == 0.
854 - Replaced 'cache_hot_vm_factor' with 'max_hotvm_obj_size'.
855 - Moved ICMP socket to external 'pinger' program.
a65bb524 856 - Moved tvSubMsec() to lib/util.c.
857 - Moved accessLogTime() to debug.c.
4d1c96c0 858 - Fixed handling of race condition in icpHandleIMSReply().
859 - Fixed "\r\n\0" bug in gopherSendRequest();
860 - Fixed cachemgr output for non-table browsers (Cord Beermann).
861 - Moved accept() for dnsserver into Squid.
67e7a3e0 862 - New SVR4 config stuff in contrib directory (Markus Gyger).
a88cc58a 863 - Includes squid-1.0 changes up to 1.0.17.
73d94b9e 864 - Fixed storeWriteCleanLog() bug which caused released objects
865 to be kept.
0ac25a67 866 - Added *FreeMemory() routines.
67508012 867
868Changes to squid-1.1.beta3 (September 16, 1996):
86ee2017 869
870 - s/()/(void)/
871 - Fixed 8k page leak in icmpRecv().
473471f2 872 - Use strerror() if available instead of sys_errlist[].
873 - Misc ANSI-related cleanup.
d4488506 874 - Added 'cache_stoplist' to specify things which should
875 never get saved to disk.
876 - Merged some parsing routines into parseWordlist().
877 - Fixed icpHandleIMSReply() bug when HTTP reply headers
878 received in multiple reads.
879 - Changed all ipcache_nbgethostbyname() handler functions
880 to be void.
881 - Fixed bug when storeLockObject() fails for UDP_HIT_OBJ
882 replies.
883 - Simplified storeGet().
884 - Removed meta_data.hash_links member.
caebbe00 885 - Includes squid-1.0 changes up to 1.0.16.
e1d9800b 886 - s/__STRICT_ANSI__/__STDC__/g
86ee2017 887
67508012 888Changes to squid-1.1.beta2 (September 12, 1996):
4c5cabe1 889
49e75273 890 - Switched to ANSI style coding.
b8d8561b 891 - Fixed UDP_HIT_OBJ objects ignoring 'proxy-only' setting.
4c5cabe1 892 - Added setting cachemgr.cgi fields from query string
893 (Neil Murray).
894 - Split log type TCP_IFMODSINCE into TCP_IMS_HIT and
895 TCP_IMS_MISS
896 - Replaced proto_hit() and proto_miss() with proto_count()
897 which looks at log_type argument to calcultate hits
898 and misses.
899 - Split CacheInfo into HTTPCacheInfo and ICPCacheInfo.
900 - Placed call to proto_count() just after log_append()
901 so we only need it in one place.
902 - Made a lot of proto.c functions static and added prototypes.
ce2869d0 903 - Fixed icpProcessRequest() bug. Need to check EXPIRED
904 before IMS.
eebe8724 905 - Fixed aclDestroyDenyInfoList() to NULL free'd lists.
906 - Fixed storeDirClean() to unlink files which should be
907 directories (Cord Beerman).
be083e42 908 - Added ICMP support. Source ping will use ICMP packets if
909 compiled with -DUSE_ICMP=1 and started with root privleges.
4c5cabe1 910
a09d6f9d 911Changes to squid-1.1.beta1 (September 12, 1996):
36fd4d12 912
913 - Fixed stupid coredump bug in storeGetSwapSpace().
914 - Cleaned up gopher.c; prototypes, make functions static, etc.
915 - Added READ_DEFERRED entry flag. Only extend lifetime when
916 first entering deferred mode.
917 - Added debug_trap() to replace some fatal_dump()'s. Now use
918 debug_trap for non-fatal errors. If -C option is set,
919 then debug_trap is the same as fatal_dump.
920
7690e8eb 921Changes to squid-1.1.alpha18:
922
7939435c 923 - Fixed storeCheckPurgeMem() to both 'purge' *and* 'release'
924 objects as needed.
7690e8eb 925 - Fixed up RWStateCallbackAndFree() to prevent it from getting
926 called twice.
927 - Added 'deny_info' support for redirecting denied requests to
928 a specific URL (maex@space.net).
929 - Fixed protoUnregister() to not abort objects being swapped in.
d54ac2a3 930 - Fixed parent-stays-dead-bug by removing PING_WAITING
931 check in icpHandleIcpV?().
7690e8eb 932 - Changed debug log timestamp format.
933 - Fixed coredump-causing bugs in icpHandleIMSReply().
934 - Fixed FMR bug in neighborsUdpAck() for UDP_HIT_OBJ replies.
935 - Fixed up InvokeHandlers() to clear handler before calling.
35b9d444 936 - Added -k signal option to signal a running Squid (Markus Gyger).
c28f8352 937 - Removed dynamic_array code.
7939435c 938
1ee4fb1a 939Changes to squid-1.1.alpha17:
940
941 - Added more IMS support. Now Squid issues IMS requests for
942 expired objects in the cache. Log type will be either
943 TCP_EXPIRED_HIT if the server sends "304 Not Modified" or
944 TCP_EXPIRED_MISS if the server send a new object.
49789bff 945 - Added Config.expireAge and 'expire_age' to config.
1ee4fb1a 946 - Fixed storeGetMemSpace() bug; need to check
947 storeCheckPurgeMem() instead of storeEntryLocked().
948 - Renamed icp_hit_or_miss() to icpProcessRequest().
949 - Changed mkrfc850() to use normal variable instaed of a
950 pointer.
951 - Removed store_entry member from fd_table[] in comm.h.
952 - Changed httpSendRequest to not tack Squid onto the 'User-Agent'
953 line, Use HTTP/1.1 'Forwarded' instead.
954 - Removed icpProcessHIT() which only called icpSendMoreData().
955 - Removed icpProcessIMS() which only called icpGetHeadersForIMS().
956 - Removed some 'Reset header fields for reply' crap.
957 - added old_entry member to icpStateData for handling IMS
958 requests.
959 - Added 'locks' member to ipcache_entry; need to lock an
960 ipcache entry during ipcache_call_pending().
961 - Removed ipcache_call_pending_badname().
962 - Cleaned up setting/clearing IP_LOOKUP_PENDING bit.
963 - Removed storeEntryLocked() trap in storePurgeMem().
964 - Added storeCheckExpired().
965 - Removed storeWalkThrough() and removeOldEntry(), changed
966 storePurgeOld() to do the walking through instead.
30ba5128 967 - Added storeConfigure() so HUP signal affects store_swap size.
49789bff 968 - Replaced some parsing functions with parseMinutesLine().
969 - Added StoreEntry flag bit ENTRY_NEGCACHED.
970 - Added storeNegativeCache().
1ee4fb1a 971
1c481e00 972Changes to squid-1.1.alpha16:
973
e4289d4f 974 - Fixed ipcache TTL bug from new ipcache_parsebuffer().
975 - Copied recent ipcache.c changes to fqdncache.c
976 - Copied icpHandleIcpV2() fix to icpHandleIcpV3().
977 - incorporate squid-1.0.12 changes.
978
70cbd177 979Changes to squid-1.1.alpha15:
980
981 - Removed 'bad swap_status' trap in icpHandleIcpV2.
982 Now skip ICP replies for StoreEntry's with ping_status
983 != PING_WAITING.
984 - Fixed numerous compiler problems.
985
1450414d 986Changes to squid-1.1.alpha14:
987
988 - Fixed ENTRY_DISPATCHED bug. ENTRY_DISPATCHED was not always
989 getting set (e.g. for requests matching hierarchy_stoplist).
990 This could cause multiple calls to storeAbort() for the same
991 entry.
992 - With ENTRY_DISPATCHED now fixed, call squid_error_entry()
993 from protoUnregister() for StoreEntries which have not
994 been dispatched.
995 - Fixed 'quick_abort' parsing bug.
996 - NULL terminate too-long URL strings in urlParse(). Still
997 need fix to somehow handle these.
d5d836c0 998 - Added shadow password patch from John Saunders
999 <johns@rd.scitec.com.au>
1450414d 1000 - Added _dns_ttl_ hack from bne@CareNet.hu to get real TTL
1001 values from DNS queries. See Release-Notes-1.1.txt for more
1002 info.
d5d836c0 1003 - Added better '304 Not Modified' reply from Jaeyeon Jung
1004 <jyjung@cosmos.kaist.ac.kr>.
17d32ba1 1005 - Rewrote ipcache_parsebuffer().
1450414d 1006 - Fixed stupid clientProxyAuthCheck() bugs.
1007 - Made IP cache size configurable with 'ipcache_size'.
1008 - Fixed bug parsing 'cache_swap_low'.
1009 - Added -b option to ftpget to limit data transfer rate
1010 (bytes/sec). Specify on 'ftpget_options' in config file.
1011 - Miscellaneous filedescriptor management cleanup.
1012 - Renamed function getFromCache() to protoStart().
6bf5b6ec 1013 - Added delays when forking dnsservers, redirectors, and
1014 ftpget.
1450414d 1015 - Includes 1.0 changes up to 1.0.11.
1016
1017Changes to squid-1.1.alpha13:
1018
1019 - oops, there was no alpha13.
46aea673 1020
d744f553 1021Changes to squid-1.1.alpha12:
1022
57b7e562 1023 - Rewrote storeGetMemSpace().
1024 - Fixed hot_vm accounting; only count objects which are added
1025 to the IN_MEMORY table.
616e163d 1026 - Changed protoUndispatch() to never call squid_error_entry().
57b7e562 1027 Should fix storeSwapOutHandle() and 'HELP! Someone is
1028 swapping out a bad entry' coredumps.
1029 - Report all error pages to the debug log.
d744f553 1030 - Added -i option which forces IP cache entry to be invalidated
1031 just after an object retrieval begins.
af00901c 1032 - Includes all squid-1.0 changes up to squid-1.0.10.
2546fcb3 1033 - Added patch from srb@cuci.nl (Stephen R. van den Berg) for
1034 - ttl_force_pattern
1035 - quick_abort min pct max
1ce5b828 1036 - Added a proxy authentication patch from Jon Thackray
1037 <jrmt@uk.gdscorp.com>. Must add -DUSE_PROXY_AUTH=1 to src/Makefile.
c85e0538 1038 - Cleaned up calling maintenance functions from main().
616e163d 1039
dd263318 1040Changes to squid-1.1.alpha11:
1041
1042 - Fixed sscanf() bug in storeDirClean()
1043 - Fixed coredump in squid_error_entry() on Config.errHtmlText.
dfdb0343 1044 - Added redirector stats entry to cachemgr.cgi.
dd263318 1045 - Call ipcache_purgelru() during an idle timeout.
1046 - Changed fqdnFromAddr() to copy inet_ntoa() result into a
1047 static buffer.
1387baa5 1048 - Fixed storeDirClean() printf format.
dd263318 1049
9cc8a658 1050Changes to squid-1.1.alpha10:
1051
2e0569ed 1052 - Fixed directory increment bug in storeDirClean().
9cc8a658 1053 - Misc little changes trying to track town random coredumps.
1054 - Includes all squid-1.0 changes up to squid-1.0.8.
2e0569ed 1055
004b3381 1056Changes to squid-1.1.alpha9:
1057
1058 - Fixed parsing of redirected URLs.
1059 - Changed URL redirection to pass in client address, ident, and method.
1060 - Fixed NULL pointer coredump in log_append().
1061 - Don't swap negative-cache objects to disk (storeCheckSwappable())
1062 - Only purge MemObject if entry is swapped to disk.
1063 - Includes all squid-1.0 changes up to squid-1.0.7
cd2e6c01 1064 - Fixed purify free memory errors in clientAccessCheck().
004b3381 1065
642a7c42 1066Changes to squid-1.1.alpha8:
1067
eaa77841 1068 - Removed all references to hierarchy.log.
1069 - Changed hierarchy_log_append() to hierarchyNote() and added
1070 _hierarchyLogData structure.
642a7c42 1071 - Fixed "tty input" bug where a reverse lookup request was
1072 written to stdout.
1073 - Cleaned up pointers in protoUnregister().
0a5b9b32 1074 - Includes all squid-1.0 changes up to squid-1.0.6.
2546fcb3 1075 - cache_swap 0 is allowed (proxy only server, no swapping), mainly
1076 intended for fast maintenance startups where the system already
1077 has to be running, but the disk(s) have not been fsck'd yet.
1078 - quick_abort actually works now
1079 - quick_abort functionality made conditional
1080 - ttl_pattern storage wasn't being cleaned upon a reread of
1081 the config file (the patterns were added only, got duplicates)
1082 - ttl_force_pattern a new config option to override the settings
1083 of certain pages despite (or because) of enforced low expiry times
2546fcb3 1084
98d030e6 1085Changes to squid-1.1.alpha7:
1086
c10b625a 1087 - Added 'tcp_recv_bufsize' option to config.
1088 - Changed NEIGHBOR to SIBLING where appropriate.
1089 - Split UDP_HIT_OBJ into {PARENT,SIBLING}_UDP_HIT_OBJ
1090 - Misc casts and cleanup from running Insight.
1091 - Replaced all get*() functions with direct references to
1092 Config structure.
98d030e6 1093 - Removed 'http_stop', 'ftp_stop', and 'gopher_stop' from config.
1094 - Added 'ssl_proxy' config for forwarding all SSL requests to
1095 another proxy.
1096 - Includes all squid-1.0 changes up to squid-1.0.5.
c10b625a 1097
40878e17 1098Changes to squid-1.1.alpha6:
1099
1100 - Changed storage manager to use a two level directory
1101 structure. This makes squid-1.1 incompatible with squid-1.0!
4349cb51 1102 (Mark Treacy).
40878e17 1103 - Added last modification time to the StoreEntry structure, and
1104 the swap log.
1105 - Changed how memory passed to comm_write() gets freed. Now
1106 pass in a free handler function which gets called when the
1107 RWStateData structure is destroyed.
1108 - Other misc cleanup.
1109 - Added a reverse-address-lookup cache (``fqdncache'').
1110 - Added support for threaded ACLs for destination IP addresses
1111 and source hostnames.
1112 - Use aclMatchDomainList() instead of aclMatchWord() for domain names.
1113 - Renamed cachemgr 'stats/general' to 'stats/ipcache'.
1114 - Added 'log_fqdn' option to config file.
1115 - Added 'client_netmask' to config file.
1116
baa49bd2 1117Changes to squid-1.1.alpha5:
fb3310f1 1118
baa49bd2 1119 - Got Asynchronous I/O stuff to compile and run on IRIX 5.3
fb3310f1 1120 - Cleaned up diskHandleWrite()
1121 - Added free() handler to struct dwrite_q so diskHandleWrite()
1122 can free memory after its been written.
1123 - Changed file_open() to not allow files to be opened O_RDWR.
1124 - Changed file_open() to always set O_APPEND for O_WRONLY files.
14ea2549 1125 - Includes all squid-1.0 changes up to squid-1.0.2.
fb3310f1 1126
499109b3 1127Changes to squid-1.1.alpha4:
1128
1129 - Fixed Asynchronous Disk I/O routines to basically work.
1130 - Fixed memory write bugs when using the redirector.
1131 - Added support for non-anonymous FTP urls without needing a
1132 password in the URL.
1133
27386800 1134Changes to squid-1.1.alpha4:
1135
1136 - Changed cachemgr detailed filedescriptor info to be a separate item.
1137 - 'no-cache' reload now discards bad IP cache entries too.
1138 - Added 'echo request' URL hack: http://cachehost:3128/echo
1139 - Added URL redirector feature.
1140 - Addeed 'ident_lookup' option to config file
8929e8c7 1141 - Fixed http to never rely on blocking IP cache lookups.
1142 - Removed need for locked IP cache entries.
f13e2386 1143 - Changed free page stacks to always free pages if more than
1144 'max' are allocated.
27386800 1145
1ef4c6c1 1146Changes to squid-1.1.alpha3:
983061ed 1147
898f5d1d 1148 - Added Asynchronous Disk I/O routines from Pete Bentley.
27386800 1149 (NOTE, not yet working for IRIX 5.3).
1ef4c6c1 1150 - Made squid native access log the default format.
1151
1152Changes to squid-1.1.alpha2:
1153
1154 - Added support for RFC931/ident
1155
1156==============================================================================
9cc8a658 1157
6d2296d4 1158Changes to squid-1.0.18 (October 7, 1996):
1159
1160 - Added INADDR_NONE to cachemgr.c for Solaris.
1161 - Added checks to deal with Harvest Cached neighbors which don't
1162 handle Squid's ICP version 2.
1163
233794cd 1164Changes to squid-1.0.17 (September 24, 1996):
1165
1166 - Fixed cachemgr.cgi to handle an arbitrary IP address (Ron
1167 Gomes)
1168 - Fixed syslog() calls to use syslog(X, "%s", buf) (Yoichi
1169 Shinoda).
1170 - Copied ipcache locking stuff from v1.1.
1171 - Copied httpConnect() from v1.1 for non-blocking DNS lookups.
1172 - Fixed "\r\n\0" bug in gopherSendRequest();
1173
caebbe00 1174Changes to squid-1.0.16 (September 16, 1996):
1175
1176 - Fixed shadow passwd support (John Saunders).
1177 - Added checkFailureRatio() to detect high fail:success ratios
1178 and go into ICP "hit only" mode for 5 minutes when the ratio
1179 exceeds 1.
1180 - Added ip_acl_destroy() to reset 'local_ip' and 'firewall_ip'
1181 on HUP signal.
1182
1183Changes to squid-1.0.15 (September 13, 1996):
1184
1185 - Fixed stupid bugs from moving icpState->flags to
1186 request->flags.
1187
1188Changes to squid-1.0.14 (September 13, 1996):
1189
1190 - Added '#if DELAY_HACK' code for Mike Groeneweg
1191 <mikeg@scorpion.murdoch.edu.au>.
1192 - Fixed debug bug in ttlSet().
1193 - Moved icpState->flags to request->flags.
1194 - Fixed edgeWouldBePinged() to skip SIBLINGS and NO-CACHE
1195 requests.
1196 - Fixed bad SET/TEST in httpProcessReplyHeader() (Miguel A.L.
1197 Paraz).
1198
1199Changes to squid-1.0.13 (September 12, 1996):
1200
1201 - Fixed ftpget parsing PASV reply bug (Carson Gaspar).
1202 - Forced include of <netinet/in_systm.h> for NeXT (Holger
1203 Hoffstaette).
1204 - Promulgate tcp_outgoing_addr to ftpget with -o option (Edward
1205 Moy).
1206 - add Date: header to Squid-generated Gopher objects (Geoffrey
1207 Keating).
1208 - cachemgr.cgi HTML fixes (Cord Beermann).
1209 - Collapsed some config parsing functions to parseOnOff().
1210 - Added config option: memory_pools on|off
1211 - Added config option: udp_hit_obj on|off
1212 - Added config option: forwarded_for on|off
1213 - Copied better stmem.c and stack.c routines from v1.1 code.
1214 - Added support for HTTP/1.1 Cache-Controls 'private' and
1215 'no-cache'.
1216 - Copied dnsserver "hello/alive" test from v1.1 code.
1217
1c481e00 1218Changes to squid-1.0.12 (September 3, 1996):
1219
1220 - Fixed urlCheckRequest() to allow CONNECT/SSL requests.
1221 - Change default socket send/receive buffers to 16k (in
1222 configure) instead of 8k, mainly for Solaris.
1223 - Fixed urlParse() to remove trailing dots from hostnames.
1224 - Added 'ttl_pattern/i' config tag for case-insensitive
1225 regular expressions.
1226 - Fixed swapin_complete_handler FMW bug in storeSwapInHandle().
1227 - Removed 'Invalid object detected' trap in storeValidToSend().
1228
a8f7d3ee 1229Changes to squid-1.0.11 (August 30, 1996):
1230
1231 - Fixed ENTRY_DISPATCHED bug. Now set ENTRY_DISPATCHED
1232 only in getFromCache().
1233 - Added missing newlines to a number of debug messages.
1234 - NULL-terminate long URL's in urlParse().
1235 - Changed configure to remove libmalloc for FreeBSD
1236 - Changed ftpget to assume a single space between date and
1237 filename in Unix sytle listings.
1238 - Added urlCheck() to check for supported method/protocol
1239 combinations and return "501 Not Implemented" when
1240 appropriate.
1241 - Added ftpget check for negative port numbers in PASV
1242 reply.
1243 - Added shadow password support for cachemgr shutdown.
1244
af00901c 1245Changes to squid-1.0.10 (August 26, 1996):
1246
1247 - Fixed INADDR_NONE not being set for ftpget.c.
1248 - Remove "Connection: Keep-Alive" lines from HTTP requests
1249 since Squid doesn't support them.
1250 - Fixed IP Address/netmask bug. Now 1.2.3.4/255.255.255.0 is
1251 equivalent to 1.2.3.0/255.255.255.0.
1252
1253Changes to squid-1.0.9 (August 22, 1996):
1254
1255 - Cleaned up ipcache_purgerlu().
1256 - Fixed ipcache_gethostbyname() to release expired entries.
1257 - Added check for numeric addresses to ipcache_nbgethostbyname().
1258 - Added Date: field to ftpget's HTTP header output.
1259 - Added temporary hack to httpProcessReplyHeaders() to allow
1260 caching of non-HTTP objects fetched from neighbors when
1261 the header does not have Date, Expires, or Last-Modified.
1262 - Added a check for a valid ICP socket before sending ICP
1263 queries.
1264 - Fixed SSL code to unregister DNS lookups if client aborts.
1265 - Removed lib/host_cache.c from distribution.
1266 - Made IP cache stats output sorted by last reference.
1267 - Added ICP internet-draft to docs directory.
1268
9cc8a658 1269Changes to squid-1.0.8 (August 19, 1996):
1270
1271 - Added ftpget fixes from carson@lehman.com and moy@parc.xerox.com.
1272 - Fixed -s option to enable syslog logging.
1273 - Added 'err_html_text' for configurable error messages.
1274 - Fixed protoDispatchDNSHandle() to not try a direct fetch if
1275 host is beyond firewall_ip list.
1276 - Changed storeDirClean() to handle one directory per call and
1277 not keep the dirhandle open between calls.
1278 - Changed .zip MIME type to "application/x-zip-compressed".
1279 - Added new 'url_regex' ACL type, regular expression match over
1280 the whole URL.
1281 - Removed xrealloc() call from storeClientListAdd().
1282
004b3381 1283Changes to squid-1.0.7 (August 14, 1996):
1284
1285 - Added "store_clean" routines to periodically remove orphaned
1286 swap files.
1287 - Increased StoreEntry->method_t from 3 to 4 bits, probably fixes
1288 storeGenerate*Key() coredumps.
1289 - Added debugging to examine_select().
1290 - Added peer address to debugging for Ignored ICP packets.
1291
65159151 1292Changes to squid-1.0.6 (August 12, 1996):
1293
1294 - Fixed coredump in icpStateFree() for bad requests.
1295 - Fixed configure bug in determining FD_SETSIZE.
1296 - Fixed garbage collection to stop if SIGTERM received.
1297 - Fixed pid file to be written just before 'ready to serve requests'.
1298 - Fixed CheckQuickAbort() lock_count bug.
1299 - Fixed setting the hierarchy code for access.log when the
1300 hierarchy.log is disabled.
1301 - Fixed urlParse() to fail for URLs longer than MAX_URL bytes.
1302 - Fixed icpDetectClientClose() to detect TCP half-close and
1303 not abort the connection.
1304
1305Changes to squid-1.0.5 (July 25, 1996):
1306
1307 - Added ICP_OP_RELOADING to be used instead of ICP_OP_DENIED
1308 for -Y option.
1309 - Moved hierarchy_code for access.log from MemObject to
1310 request_t so simultaneous client readers don't get the same
1311 hierachy code.
1312
1313Changes to squid-1.0.4 (July 24, 1996):
1314
1315 - Fixed ftpget logic/precedence bug
1316 - Fixed ttlSet() to choose TTL as offset from when the object
1317 was originally served, not the current time.
1318 - Fixed configure bug with setting GETTIMEOFDAY_NO_TZP.
1319 - Removed unnecessary call to ipcache_gethostbyname() in
1320 sslConnect().
1321 - Fixed stupid memset() bug in gopher.c causing
1322 a huge block of stack memory to be zeroed.
1323
1324Changes to squid-1.0.3 (July 18, 1996):
1325
1326 - Fixed FTP to send 'Ascii' or 'Binary' based on MIME encoding,
1327 not content-type.
1328 - Changed icpHierarchical() to allow IMS requests to neighbors
1329 if they all support Squid's private keys.
1330 - Fixed icpUdpSend() to not ask for a HIT_OBJ reply if the
1331 HTTP request included 'Pragma: no-cache'.
983061ed 1332
14ea2549 1333Changes to squid-1.0.2 (July 16, 1996):
1334
1335 - Fixed HTTP code in access.log for TCP_IFMODSINCE requests.
1336 - Fixed SSL to not read again until previous write is complete.
1337 - Added CPU usage percentage in cachemgr 'info' output.
1338 - Fixed bug when removing a neighbor. Forgetting to decrement
1339 friends->n causes a duplicate ICP query to be sent in
1340 neighborsUdpPing().
1341 - Increased some MAX_URL sized character buffers to prevent
1342 overflows.
1343
30a4f2a8 1344Changes to squid-1.0.1 (July 8, 1996):
1345
1346 - Fixed ftpget server looping on socket EOF condition.
1347 - Fixed SA_RESETHAND undefined bug.
1348 - Fixed half-hour timezone offset bug.
1349 - Fixed parse_rfc850() to return -1 instead of 0 upon error.
1350 - Added patch for Motorola systems from Tony Lorimer.
1351 - Added support for HTTP PUT method.
1352 - Added check for <netinet/tcp.h> for HP-UX.
1353 - Added GNU General Public License.
1354 - Changed ttlSet() to use Date field if Last-Modified is absent.
1355 - Changed http.c to not save objects from neighbors which do
1356 not have Date, Last-Modified, or Expires values.
1357 - Changed some large local character arrays to static.
1358
1359Changes to squid-1.0.0 (July 1, 1996):
1360
1361 - Fixed beta17 "fd_lifetime" typo bug
1362 - Added 'firewall_ip_list' to configuration options
1363 - Set resolver options to disable searching default domains
1364 and parent domains.
1365 - Added blocking-rebuild -F option.
1366 - Fixed storeMaintainSwapSpace to be called every 10 seconds.
1367 - Fixed ICP_HIT_OBJ bug causing objects to get stuck in VM.
1368 - Fixed matching the ends of domain names (e.g. bar.com no
1369 longer matches foobar.com).
1370 - Fixed checking return code from fprintf() while writing the
1371 clean swap log.
1372 - Fixed fatal_dump from storeSwapoutHandle running out of disk
1373 space.
1374 - Added disabling of a neighbor cache if 95% of replies are
1375 UDP_DENIED.
1376 - Added accounting for misc memory/data structures
1377 - Added 'no-query' option for 'cache_host' config line
1378 - Added error reporting to SSL requests.
1379 - Fixed SSL bug, client abort was not closing the server
1380 side connection.
1381 - Fixed checking hierarchy_stoplist bug.
1382 - Fixed ipcache error messages by giving each entry its
1383 own string.
1384 - Use sigaction() instead of signal() if available.
1385 - Fixed ipcache bug causing some lookups to get stuck in
1386 PENDING state if all dnsservers are busy.
1387 - Fixed domain name matching bug when using '.com' instead of
1388 'com'.
1389 - Fixed close_handler coredump bug in comm.c.
1390 - Removed unnecessary DNS lookup of hostnames in WAIS URLs.
1391
1392Changes to squid-1.0.beta17 (June 12, 1996):
1393
1394 - Fixed another ipcache coredump problem where an entry could
1395 be released between writing to and reading from dnsserver.
1396 - Fixed store.c bug of purging aborted objects.
1397 - Cleaned up checkLifetimes() function to make it simpler.
1398 - Added visible_hostname support to ftpget.
1399 - Fixed null edge dereferencing bug for UDP_HIT_OBJ.
1400
1401Changes to squid-1.0.beta16 (June 10, 1996):
1402
1403 - Fixed two coredump-causing bugs in ipcache_unregister().
1404 - Changed 'close_handler' to a linked list.
1405 - Changed freeing of protodispatch_data structures to use
1406 new close_handler (attached to client FD).
1407 - Fixed URL handling to accomodate browswers which do not handle
1408 relative URL parsing.
1409
1410Changes to squid-1.0.beta15 (June 9, 1996):
1411
1412 - Fixed storeSwapoutHandle coredump bug
1413 - Fixed DNS lookup failure of neighbor hosts after a few hours
1414 of operation
1415 - Changed memcpy() to memmove() for overlapping memory copies
1416 - Changed store rebuidling to unlink the log-last-clean file
1417 in case of a crash during rebuild
1418 - Added forwarding loop detection
1419 - Changed all memcpy to use xmemcpy which is memmove, bcopy, or
1420 memcpy.
1421 - Fixed coredump bug from partial dnsserver reads, manifest on
1422 FreeBSD and NetBSD.
1423
1424Changes to squid-1.0.beta14 (June 7, 1996):
1425
1426 - Fixed coredump bug in icp.c when generating ``Not Modified''
1427 replies.
1428 - Fixed SSL bug which assumed the requested host name would
1429 already be in the IP cache.
1430 - Fixed names of generated HTTP reply headers.
1431
1432Changes to squid-1.0.beta13 (June 7, 1996):
1433
1434 - Fixed coredump bug where StoreEntry key was free'd too soon.
1435 - Fixed UDP_HIT_OBJ bug: cancel the hierarchy timeout and set
1436 the ping_status to DONE for UDP_HIT_OBJ replies.
1437
1438Changes to squid-1.0.beta12 (June 6, 1996):
1439
1440 - Fixed problem when using udp_outgoing_addr where no ICP
1441 packets would be recieved because they were getting sent
1442 to the "outgoing" instead of the "incoming" socket.
1443 - Fixed objects hanging around in cache after a keychange.
1444 - Added ability to restrict neighbor caches with ACLs.
1445 ('cache_host_acl').
1446 - Fixed ssl FD mismatch bug.
1447 - Fixed INADDR_NONE bug on 64bit systems.
1448 - Fixed store rebuilding bug; temporary log file was not being
1449 truncated.
1450 - Made all external processes communicate with TCP sockets
1451 (no more Unix domain sockets).
1452 - Semi-major rewrite of ipcache implementation.
1453 - Fixed a couple memory bugs found by purify.
1454 - Fixed sending large (>8192 bytes) HTTP requests.
1455 - Added "lazy" server IP address ACL checks (type 'dst').
1456 - Changed handling of IMS requests. Now will return "304
1457 Not Modified" if the requested object is in the cache
1458 and not expired.
1459
1460Changes to squid-1.0.beta11 (June 1, 1996):
1461
1462 - Fixed serious memory leak of MemObject->reply structures.
1463
1464
1465Changes to squid-1.0.beta10 (May 31, 1996):
1466
1467 - Fixed bug when request arrives in fragmented IP packets.
1468 - Fixed ACL bug which denied cache manager access while in
1469 httpd_accel mode.
1470 - Changed ftpget to "fail nicely" for sites which do not allow
1471 PORT requests (if compiled with PASVONLY).
1472 - Fixed Unix domain socket off-by-one bug in ftpget.
1473 - Fixed lingering sockets after shutdown by SIGTERM.
1474 - Added dnsserver use histogram to ipcache stats.
1475 - Changed domain ACL's to match only the end of the hostname, not
1476 just anywhere in the string.
1477 - Fixed setuid bugs when pid_filename was not defined
1478 - Fixed zero-sized object getting stuck in VM.
1479 - Configure checks for working UNIX domain stream sockets
1480 - Rotate cache.log before the others
1481 - SIGUSR2 now toggles between full and normal debugging
1482 - Close and restart ftpget server during logfile rotation
1483 - Added memory pools for request_t and MemObject data structures.
1484 - Added new address binding options for more control
1485
1486Changes to squid-1.0.beta9 (May 23, 1996):
1487
1488 - Fixed storeToString() coredump bug on 'swap_buf'
1489 - Added back the CIDR notation functionality to decoding IP
1490 address ACLs.
1491 - Fixed ftpget listing parsing coredump bug.
1492 - Fixed neighborsUdpAck() coredump for late-arriving ICP replies.
1493
1494Changes to squid-1.0.beta8 (May 22, 1996):
1495
1496 - More friendly CFLAGS and LDFLAGS for configure
1497 - ACL_ALLWEEK bugfix
1498 - Added missing increment of UDP connection counter.
1499 - Changed ftpget select to check for EWOULDBLOCK/EAGAIN
1500 (workaround for broken Solaris select(2)).
1501 - Fixed MALLINFO calls for Linux
1502 - Fixed strerror() problems on SunOS 4.1.x
1503 - Fixed DefaultAnnounceRate; set to zero by defult.
1504 - Changed all port variables to u_short.
1505 - Created AF_UNIX versions of comm_open(), comm_connect().
1506 - Changed ftpget server to use UNIX domain socket.
1507 - Removed RESET_SIGNAL_HANDLER check--always reset the signal
1508 handler.
1509 - Added instrumentation of basic IPCache stats.
1510 - Fixed calculation of neighbor average RTT.
1511 - Added 'outbound_addr_list' to config
1512 - Change getFirstParent() to getFirstUpParent().
1513 - Changed ftpget to use an additional pipe() for crash detection
1514 - Added ICP_OP_DENIED message type
1515 - Added patches for Nextstep port from Luke Howard
1516 <lukeh@vurt.schnet.edu.au>
1517 - Added a lifetime to HTTP server connections being deferred.
1518 - Added IP address ranges in 'src' ACLs
1519 - Added FQDN's in 'src' ACLs
1520 - Fixed request structure free-memory-read/coredump bug.
1521 - Changed icp.c to select on client socket to detect aborts.
1522 - Better compliance with HTTP/1.1 *DRAFT* regarding which reply
1523 codes can be cached.
1524 - Added 'hierarchy_stoplist' configuration option.
1525 - Changed mallopt option M_MXFAST to 512 bytes.
1526 - Added -Y option to only return UDP_HIT or UDP_DENIED during
1527 store reload.
1528 - Added UDP_HIT_OBJ type. Just like a UDP_HIT, but object data
1529 is returned in the UDP packet if it will fit; saves a TCP
1530 connection. Not compiled in by default, add -DUDP_HIT_WITH_OBJ
1531 to src/Makefile DEFINES.
1532
1533Changes to squid-1.0.beta7:
1534
1535 - Fixed comm_udp_sendto continuous loop bug
1536 - Fixed URLs-with-colon-but-no-port-number bug
1537 - Fixed sending ICP queries for HEAD requests
1538 - Changed 'server_list' output. Added RTT, Fetches, Hits, Misses,
1539 and percents.
1540 - Fixed setuid bug causing some logs to be owned by root.
1541 - Fixed virtual host mode (-V option)
1542 - Added read(2) instrumentation for HTTP and FTP.
1543 - Changed neighbor initialization to continue if DNS lookup fails.
1544 - Lint cleanup
1545
1546Changes to squid-1.0.beta6:
1547
1548 - Fixed null error message coredump in ftpget.
1549 - Added -m Method option to `client'.
1550 - Fixed ftpget server bug with missing trailing slash.
1551 - Removed 'connect_ports' from config, use general ACLs instead.
1552 - Changed requested listen queue length to 1/4 of getMaxFD().
1553 - Rewrote SSL/CONNECT handlers. Now doesn't use a StoreEntry.
1554 - Fixed some aborted objects getting stuck in VM bug.
1555 - Fixed ftpget PASV reply sscanf to work for VMS ftpd.
1556 - Changed FTP URL parsing to use urlParse().
1557 - Changed ftpget to skip RETR command if URLs ends with '/'.
1558 - Changed ftpget to display README at the bottom if there are other
1559 server messages.
1560 - Changed ftpget to not reopen a new data connection
1561 if one is already open.
1562 - Fixed handling of FTP URLs with spaces (and other unsafe characters)
1563 - Changed ftpget to only generate BASE HREF if the FTP URL does
1564 not end with '/'.
1565
1566Changes to squid-1.0.beta5:
1567
1568 - Fixed cachemgr to send 'HTTP/1.0' on request so it works
1569 with beta4 fixes to icp.c.
1570
1571Changes to squid-1.0.beta4:
1572
1573 - Added a handler to restart the ftpget server.
1574 - Fixed access checks for ICP by parsing the requested URL.
1575 - Added "magic marker" to ftpget-generated errors so they can
1576 be negative-cached.
1577 - Added a small run-time check to configure to see if signal
1578 handlers should be restarted after invocation (ala SYSV).
1579 - Determine Maximum filedescriptors in configure and change
1580 FD_SETSIZE if needed.
1581 - Changed read stall algorithm for HTTP. No don't wait until
1582 the object is in DELETE_BEHIND mode to stall the server read
1583 and wait for the client to catch up. Also changed from 4k to
1584 16k read buffer.
1585 - Fixed HTTP request parsing to check for blank line at the
1586 end of all requests. Symptoms were "connection reset"
1587 messages.
1588
1589Changes to squid-1.0.beta3:
1590
1591 - Added ftpget '-C minport:maxport' option
1592 - Fixed PROTO_MAX fencepost bug in stat_init().
1593 - Fixed Fixed CheckQuickAbort() coredump.
1594 - Fixed disabling store.log and hierarchy.log when set to "none"
1595 - Fixed numerous problems related to setuid().
1596 - Fixed 'check_cache.pl' to use new swaplog format (without "FILE").
1597 - Fixed ACL coredumps when checking NULL words.
1598 - Changed pid_filename to be written and unlinked as root.
1599 - Added "-i seconds" option to 'client' for testing IMS GET.
1600 - Fixed a bug where an IMS request caused the valid object to
1601 get ejected from the cache.
1602 - Fixed continual DEAD_PARENT/REVIVE bug
1603 - Fixed ERR_INVALID_URL bug for URLs with a password field.
1604 - Added to Release-Notes info about converting 'cache/log' and
1605 difference between stoplists and ttl_pattern.
1606
1607Changes to squid-1.0.beta2:
1608
1609 - Fixed /bin/csh "$#argv" leftover in RunCache.
1610 - Fixed ACL day-of-week bitmask bug.
1611 - Fixed missing checks for WAIS in some places.
1612 - Fixed chdir(swappath(0)) bug; do chdir() after storeInit().
1613 - Changed enumerated structure members to be defined outside
1614 of the structure itself (for AIX).
1615 - Changed ftpget to fork before reading the request and make
1616 sure the entire request is read.
983061ed 1617
234967c9 1618Changes to squid-1.0.beta1 (Apr 19, 1996) from Harvest cached-1.4.pl3:
2d15012a 1619
2d15012a 1620 - Added a "server mode" to ftpget. Now the (much smaller)
1621 ftpget process forks for each FTP request.
234967c9 1622 - Added support for If-Modified-Since GET requests.
1623 - Added support for SSL and https objects.
1624 - Added background processing for rebuilding the disk store
1625 while serving requests. Cache can now serve requests immediately.
1626 - Added a 'reconfigure' feature activated by SIGHUP. The config
1627 file is re-read and most changes will take effect.
1628 - Added an internal flag for using private keys with ICP queries
1629 to neighbors. If any neighbor returns a reqnum field of zero,
1630 then disable using private keys. But still use private
1631 keys for things with bypass the ICP query step (such as POST
1632 and IMS-GET).
1633 - Added a function to verify content-lengths. Objects with
1634 mismatched (but non-zero) content lenghts will be ejected.
1635 - Added clean shutdown mode. On SIGTERM the incoming HTTP socket
1636 is closed. Active clients are given a lifetime of 30 seconds
1637 (configurable). Process exits when all sockets are closed.
1638 - Added support for large POST objects.
1639 - Added "store.log" which logs RELEASE/SWAPIN/SWAPOUT events.
1640 - Added announce feature to squid; no longer external program.
1641 If enabled, a running cache will announce itself every 24 hrs.
1642 - Added support for FTP URLs with non-default ports.
1643 - Added new Access Control List scheme.
1644 - Added Forwarded: header to proxy HTTP requests (HTTP/1.1 feature).
1645 - Added weights neighbors.
1646 - Added urlParse() which strips off default ports and
1647 makes hostnames all lowercase.
2d15012a 1648 - Added (section,level) debugging and 'debug_options' config line.
1649 - Added 'pid_filename' to configuration file.
234967c9 1650 - Added 'visible_hostname' to configuration file.
1651 - added 'ftp_user' to configuration file.
1652 - added 'dns_positive_ttl' to configuration file.
1653 - added 'dns_negative_ttl' to configuration file.
1654 - Added 'shutdown_lifetime' to configuration file.
1655 - Fixed bug where cache process would "spin" on large objects
1656 being deferred.
1657 - Fixed byte order conversion bug on setting echo port.
2d15012a 1658 - Changed meaning of command line -b (buffered logs) option.
1659 Now the default behaviour is unbuffered logs, use -b to make
1660 them buffered.
2d15012a 1661 - Changed WAIS code to always be fully compiled in.
234967c9 1662 - Changed the storage manager to use the notion of private and
1663 public keys. Requests are now private until the reply headers
1664 have been read.
1665 - Changed access logging significantly. Entries to "access.log"
1666 are written when the client connection closes. Every connection
1667 is logged exactly once, always with a valid size.
2cf0aa81 1668 - Changed access log format (non-common) to include request
1669 method and sub-second timestamps.
234967c9 1670 - Changed handing of ECONNRESET (connection reset) errors.
1671 Now treated like any other read error.
1672 - Changed 'rotate logs' to be activated by SIGUSR1.
1673 - Changed configure script to look specifically for tm_gmtoff
1674 and set HAVE_TM_GMTOFF.
1675 - Changed configure script to look specifically extended mallinfo
1676 structure and set HAVE_EXT_MALLINFO
1677 - Changed ICP reply code to use negative TTL value as UDP_HIT
1678 threshold so we never return a HIT on neg-cached objects.
1679 - Changed ftpget to use select(2) on I/O for timeouts. ftpget
cdd8d814 1680 now exits immediately if stdin goes away.
234967c9 1681 - Changed handling of '-z' option. Now only execute 'rm -rf ...' if
1682 -U option also given.
1683 - Removed the command line -d (debug) option. Use 'debug_options'
1684 in config file.
1685 - Removed all code and references to binary port.
1686 - Removed dual logging to stderr/cache.log.
1687 - Removed old IP access controls ('proxy_allow', etc.)