]> git.ipfire.org Git - thirdparty/squid.git/blame - CREDITS
dist errorpage.css properly again
[thirdparty/squid.git] / CREDITS
CommitLineData
262a0e14 1$Id$
9d41cbbd 2
882a34e0 3==============================================================================
9d41cbbd 4
882a34e0 5Squid is originally derived from the Harvest Information Discovery and
d6fcffd7 6Access System and relicensed under the name Squid using the Gnu Public License.
7The original Harvest copyright text follows to acknowledge the origin:
9d41cbbd 8
882a34e0 9
10/*
11 * Copyright (c) 1994, 1995. All rights reserved.
12 *
13 * The Harvest software was developed by the Internet Research Task
14 * Force Research Group on Resource Discovery (IRTF-RD):
15 *
16 * Mic Bowman of Transarc Corporation.
17 * Peter Danzig of the University of Southern California.
18 * Darren R. Hardy of the University of Colorado at Boulder.
19 * Udi Manber of the University of Arizona.
20 * Michael F. Schwartz of the University of Colorado at Boulder.
21 * Duane Wessels of the University of Colorado at Boulder.
22 *
23 * This copyright notice applies to software in the Harvest
24 * ``src/'' directory only. Users should consult the individual
25 * copyright notices in the ``components/'' subdirectories for
26 * copyright information about other software bundled with the
27 * Harvest source code distribution.
28 *
29 * TERMS OF USE
30 *
31 * The Harvest software may be used and re-distributed without
32 * charge, provided that the software origin and research team are
33 * cited in any use of the system. Most commonly this is
34 * accomplished by including a link to the Harvest Home Page
35 * (http://harvest.cs.colorado.edu/) from the query page of any
36 * Broker you deploy, as well as in the query result pages. These
37 * links are generated automatically by the standard Broker
38 * software distribution.
39 *
40 * The Harvest software is provided ``as is'', without express or
41 * implied warranty, and with no support nor obligation to assist
42 * in its use, correction, modification or enhancement. We assume
43 * no liability with respect to the infringement of copyrights,
44 * trade secrets, or any patents, and are not responsible for
45 * consequential damages. Proper use of the Harvest software is
46 * entirely the responsibility of the user.
47 *
48 * DERIVATIVE WORKS
49 *
50 * Users may make derivative works from the Harvest software, subject
51 * to the following constraints:
52 *
53 * - You must include the above copyright notice and these
54 * accompanying paragraphs in all forms of derivative works,
55 * and any documentation and other materials related to such
56 * distribution and use acknowledge that the software was
57 * developed at the above institutions.
58 *
59 * - You must notify IRTF-RD regarding your distribution of
60 * the derivative work.
61 *
62 * - You must clearly notify users that your are distributing
63 * a modified version and not the original Harvest software.
64 *
65 * - Any derivative product is also subject to these copyright
66 * and use restrictions.
67 *
68 * Note that the Harvest software is NOT in the public domain. We
69 * retain copyright, as specified above.
70 *
71 * HISTORY OF FREE SOFTWARE STATUS
72 *
73 * Originally we required sites to license the software in cases
74 * where they were going to build commercial products/services
75 * around Harvest. In June 1995 we changed this policy. We now
76 * allow people to use the core Harvest software (the code found in
77 * the Harvest ``src/'' directory) for free. We made this change
78 * in the interest of encouraging the widest possible deployment of
79 * the technology. The Harvest software is really a reference
80 * implementation of a set of protocols and formats, some of which
81 * we intend to standardize. We encourage commercial
82 * re-implementations of code complying to this set of standards.
83 */
84
85==============================================================================
86
87lib/base64.c::base64_encode():
88
89Adopted from http://ftp.sunet.se/pub2/gnu/vm/base64-encode.c.
90Modified to work with strings instead of files.
91
92==============================================================================
93
882a34e0 94snmplib/*:
95
96The SNMP library code is developed by Carnegie Mellon University.
97
98/***************************************************************************
99 *
100 * Copyright 1997 by Carnegie Mellon University
101 *
102 * All Rights Reserved
103 *
104 * Permission to use, copy, modify, and distribute this software and its
105 * documentation for any purpose and without fee is hereby granted,
106 * provided that the above copyright notice appear in all copies and that
107 * both that copyright notice and this permission notice appear in
108 * supporting documentation, and that the name of CMU not be
109 * used in advertising or publicity pertaining to distribution of the
110 * software without specific, written prior permission.
111 *
112 * CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
113 * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
114 * CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
115 * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
116 * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
117 * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
118 * SOFTWARE.
119 *
120 ***************************************************************************/
121
122==============================================================================
123
124lib/GNUregex.c:
125
126/* Extended regular expression matching and search library,
127 * version 0.12.
128 * (Implements POSIX draft P10003.2/D11.2, except for
129 * internationalization features.)
130 *
131 * Copyright (C) 1993 Free Software Foundation, Inc.
132 *
133 * This program is free software; you can redistribute it and/or modify
134 * it under the terms of the GNU General Public License as published by
135 * the Free Software Foundation; either version 2, or (at your option)
136 * any later version.
137 *
138 * This program is distributed in the hope that it will be useful,
139 * but WITHOUT ANY WARRANTY; without even the implied warranty of
140 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
141 * GNU General Public License for more details.
142 *
143 * You should have received a copy of the GNU General Public License
144 * along with this program; if not, write to the Free Software
145 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. */
146
147==============================================================================
148
882a34e0 149lib/md5.c:
150
151/*
b2a8871b 152 * This code implements the MD5 message-digest algorithm.
153 * The algorithm is due to Ron Rivest. This code was
154 * written by Colin Plumb in 1993, no copyright is claimed.
155 * This code is in the public domain; do with it what you wish.
156 *
157 * Equivalent code is available from RSA Data Security, Inc.
158 * This code has been tested against that, and is equivalent,
159 * except that you don't need to include two pages of legalese
160 * with every copy.
161 *
162 * To compute the message digest of a chunk of bytes, declare an
163 * SquidMD5Context structure, pass it to SquidMD5Init, call
164 * SquidMD5Update as needed on buffers full of bytes, and then call
165 * SquidMD5Final, which will fill a supplied 16-byte array with the
166 * digest.
167 *
168 * Changed so as no longer to depend on Colin Plumb's `usual.h' header
169 * definitions; now uses stuff from dpkg's config.h.
170 * - Ian Jackson <ian@chiark.greenend.org.uk>.
171 * Still in the public domain.
172 *
173 * Changed SquidMD5Update to take a void * for easier use and some
174 * other minor cleanup. - Henrik Nordstrom <henrik@henriknordstrom.net>.
175 * Still in the public domain.
176 *
177 * Prefixed all symbols with "Squid" so they don't collide with
178 * other libraries. Duane Wessels <wessels@squid-cache.org>.
179 * Still in the public domain.
882a34e0 180 */
181
182==============================================================================
183
184lib/radix.c:
185
186/*
187 * Copyright (c) 1988, 1989, 1993
188 * The Regents of the University of California. All rights reserved.
189 *
190 * Redistribution and use in source and binary forms, with or without
191 * modification, are permitted provided that the following conditions
192 * are met:
193 * 1. Redistributions of source code must retain the above copyright
194 * notice, this list of conditions and the following disclaimer.
195 * 2. Redistributions in binary form must reproduce the above copyright
196 * notice, this list of conditions and the following disclaimer in the
197 * documentation and/or other materials provided with the distribution.
5bb10e0a 198 * 3. Neither the name of the University nor the names of its contributors
882a34e0 199 * may be used to endorse or promote products derived from this software
200 * without specific prior written permission.
201 *
202 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
203 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
204 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
205 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
206 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
207 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
208 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
209 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
210 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
211 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
212 * SUCH DAMAGE.
213 *
214 * @(#)radix.c 8.4 (Berkeley) 11/2/94
215 */
216
217==============================================================================
218
219lib/tempnam.c:
220
221/* A reasonably functional tmpnam. */
222
223/* Originally by Tom Hageman, tom@basil.icce.rug.nl */
224
225/*
226 * This tmpnam() was changed by Gerben_Wierda@RnA.nl to serve as
227 * tempnam() for squid-1.1.6. It ignores the directory parameter, every
228 * temp file is written in /tmp.
229 */
230
231==============================================================================
87f8017c 232
233lib/drand48.c:
234
235From Linux libc-5.4.46.
236
237==============================================================================
06ff05c8 238
239mcast_encode() in src/access_log.c is derived from Mark Atkinson's
240(mark_a@cix.compulink.co.uk) "Tiny Encryption Algorithm".
241http://www.io.com/~paulhart/game/algorithms/tea.html
242
243==============================================================================
b6a2f15e 244
5bb10e0a
GS
245lib/strnstr.cc:
246
247/*-
248 * Copyright (c) 2001 Mike Barcroft <mike@FreeBSD.org>
249 * Copyright (c) 1990, 1993
250 * The Regents of the University of California. All rights reserved.
251 *
252 * This code is derived from software contributed to Berkeley by
253 * Chris Torek.
254 *
255 * Redistribution and use in source and binary forms, with or without
256 * modification, are permitted provided that the following conditions
257 * are met:
258 * 1. Redistributions of source code must retain the above copyright
259 * notice, this list of conditions and the following disclaimer.
260 * 2. Redistributions in binary form must reproduce the above copyright
261 * notice, this list of conditions and the following disclaimer in the
262 * documentation and/or other materials provided with the distribution.
263 * 3. Neither the name of the University nor the names of its contributors
264 * may be used to endorse or promote products derived from this software
265 * without specific prior written permission.
266 *
267 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
268 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
269 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
270 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
271 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
272 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
273 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
274 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
275 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
276 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
277 * SUCH DAMAGE.
278 *
279 * @(#)strstr.c 8.1 (Berkeley) 6/4/93
280 * $FreeBSD: src/lib/libc/string/strnstr.c,v 1.2.2.1 2001/12/09 06:50:03 mike Exp $
281 * $DragonFly: src/lib/libc/string/strnstr.c,v 1.4 2006/03/20 17:24:20 dillon Exp $
282 */
283
284==============================================================================
285
63b81f13
GS
286lib/getopt.c:
287
288/*
289 * Copyright (c) 1987, 1993, 1994
290 * The Regents of the University of California. All rights reserved.
291 *
292 * Redistribution and use in source and binary forms, with or without
293 * modification, are permitted provided that the following conditions
294 * are met:
295 * 1. Redistributions of source code must retain the above copyright
296 * notice, this list of conditions and the following disclaimer.
297 * 2. Redistributions in binary form must reproduce the above copyright
298 * notice, this list of conditions and the following disclaimer in the
299 * documentation and/or other materials provided with the distribution.
300 * 3. Neither the name of the University nor the names of its contributors
301 * may be used to endorse or promote products derived from this software
302 * without specific prior written permission.
303 *
304 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
305 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
306 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
307 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
308 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
309 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
310 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
311 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
312 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
313 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
314 * SUCH DAMAGE.
315 */
316
317static char sccsid[] = "@(#)getopt.c 8.3 (Berkeley) 4/27/95";
318
319==============================================================================
320
d9572179 321src/external_acl.c
322
323Copyright (C) 2002 MARA Systems AB, Sweden <info@marasystems.com>
324
325This program is free software; you can redistribute it and/or modify
326it under the terms of the GNU General Public License as published by
327the Free Software Foundation; either version 2, or (at your option)
328any later version.
ee28ce13 329
330==============================================================================
331
332helpers/external_acl/wbinfo_group/wbinfo_group.pl
333
334 This program is put in the public domain by Jerry Murdock
335 <jmurdock@itraktech.com>. It is distributed in the hope that it will
336 be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
337 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
338
4402cd0f 339==============================================================================
70c5dfb2 340
341include/IPAddress.h lib/IPAddress.cc
342include/rfc3596.h lib/rfc3596.cc
343src/ICMPv6.h src/ICMPv6.cc
344
345 This code is copyright (C) 2007 by Treehouse Networks Ltd
346 of New Zealand. It is published and Licensed as an extension of
347 squid under the same conditions as the main squid application.
348
349==============================================================================