Annotation of embedaddon/iperf/LICENSE, revision 1.1.1.1
1.1 misho 1: "iperf, Copyright (c) 2014-2016, The Regents of the University of California,
2: through Lawrence Berkeley National Laboratory (subject to receipt of any
3: required approvals from the U.S. Dept. of Energy). All rights reserved."
4:
5: Redistribution and use in source and binary forms, with or without
6: modification, are permitted provided that the following conditions are met:
7:
8: (1) Redistributions of source code must retain the above copyright notice, this
9: list of conditions and the following disclaimer.
10:
11: (2) Redistributions in binary form must reproduce the above copyright notice,
12: this list of conditions and the following disclaimer in the documentation and/
13: or other materials provided with the distribution.
14:
15: (3) Neither the name of the University of California, Lawrence Berkeley
16: National Laboratory, U.S. Dept. of Energy nor the names of its contributors may
17: be used to endorse or promote products derived from this software without
18: specific prior written permission.
19:
20: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
21: ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22: WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
24: ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25: (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
27: ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28: (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30:
31: You are under no obligation whatsoever to provide any bug fixes, patches, or
32: upgrades to the features, functionality or performance of the source code
33: ("Enhancements") to anyone; however, if you choose to make your Enhancements
34: available either publicly, or directly to Lawrence Berkeley National
35: Laboratory, without imposing a separate written license agreement for such
36: Enhancements, then you hereby grant the following license: a non-exclusive,
37: royalty-free perpetual license to install, use, modify, prepare derivative
38: works, incorporate into other computer software, distribute, and sublicense
39: such enhancements or derivative works thereof, in binary and source code form.
40:
41: =====
42:
43: This software contains source code (src/cjson.{c,h}) that is:
44:
45: Copyright (c) 2009 Dave Gamble
46:
47: Permission is hereby granted, free of charge, to any person obtaining a copy
48: of this software and associated documentation files (the "Software"), to deal
49: in the Software without restriction, including without limitation the rights
50: to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
51: copies of the Software, and to permit persons to whom the Software is
52: furnished to do so, subject to the following conditions:
53:
54: The above copyright notice and this permission notice shall be included in
55: all copies or substantial portions of the Software.
56:
57: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
58: IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
59: FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
60: AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
61: LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
62: OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
63: THE SOFTWARE.
64:
65: =====
66:
67: This software contains source code (src/net.{c,h}) that is:
68:
69: This software was developed as part of a project at MIT.
70:
71: Copyright (c) 2005-2007 Russ Cox,
72: Massachusetts Institute of Technology
73:
74: Permission is hereby granted, free of charge, to any person obtaining
75: a copy of this software and associated documentation files (the
76: "Software"), to deal in the Software without restriction, including
77: without limitation the rights to use, copy, modify, merge, publish,
78: distribute, sublicense, and/or sell copies of the Software, and to
79: permit persons to whom the Software is furnished to do so, subject to
80: the following conditions:
81:
82: The above copyright notice and this permission notice shall be
83: included in all copies or substantial portions of the Software.
84:
85: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86: EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
87: MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
88: NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
89: LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
90: OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
91: WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
92:
93: ===
94:
95: Contains parts of an earlier library that has:
96:
97: /*
98: * The authors of this software are Rob Pike, Sape Mullender, and Russ Cox
99: * Copyright (c) 2003 by Lucent Technologies.
100: * Permission to use, copy, modify, and distribute this software for any
101: * purpose without fee is hereby granted, provided that this entire notice
102: * is included in all copies of any software which is or includes a copy
103: * or modification of this software and in all copies of the supporting
104: * documentation for such software.
105: * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
106: * WARRANTY. IN PARTICULAR, NEITHER THE AUTHORS NOR LUCENT TECHNOLOGIES MAKE ANY
107: * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
108: * OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
109: */
110:
111: =====
112:
113: This software contains source code (src/queue.h) that is:
114:
115: /*
116: * Copyright (c) 1991, 1993
117: * The Regents of the University of California. All rights reserved.
118: *
119: * Redistribution and use in source and binary forms, with or without
120: * modification, are permitted provided that the following conditions
121: * are met:
122: * 1. Redistributions of source code must retain the above copyright
123: * notice, this list of conditions and the following disclaimer.
124: * 2. Redistributions in binary form must reproduce the above copyright
125: * notice, this list of conditions and the following disclaimer in the
126: * documentation and/or other materials provided with the distribution.
127: * 3. Neither the name of the University nor the names of its contributors
128: * may be used to endorse or promote products derived from this software
129: * without specific prior written permission.
130: *
131: * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
132: * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
133: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
134: * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
135: * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
136: * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
137: * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
138: * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
139: * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
140: * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
141: * SUCH DAMAGE.
142: *
143: * @(#)queue.h 8.5 (Berkeley) 8/20/94
144: */
145:
146: =====
147:
148: This software contains source code (src/tcp_window_size.{c,h}) that is:
149:
150: /*---------------------------------------------------------------
151: * Copyright (c) 1999,2000,2001,2002,2003
152: * The Board of Trustees of the University of Illinois
153: * All Rights Reserved.
154: *---------------------------------------------------------------
155: * Permission is hereby granted, free of charge, to any person
156: * obtaining a copy of this software (Iperf) and associated
157: * documentation files (the "Software"), to deal in the Software
158: * without restriction, including without limitation the
159: * rights to use, copy, modify, merge, publish, distribute,
160: * sublicense, and/or sell copies of the Software, and to permit
161: * persons to whom the Software is furnished to do
162: * so, subject to the following conditions:
163: *
164: *
165: * Redistributions of source code must retain the above
166: * copyright notice, this list of conditions and
167: * the following disclaimers.
168: *
169: *
170: * Redistributions in binary form must reproduce the above
171: * copyright notice, this list of conditions and the following
172: * disclaimers in the documentation and/or other materials
173: * provided with the distribution.
174: *
175: *
176: * Neither the names of the University of Illinois, NCSA,
177: * nor the names of its contributors may be used to endorse
178: * or promote products derived from this Software without
179: * specific prior written permission.
180: *
181: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
182: * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
183: * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
184: * NONINFRINGEMENT. IN NO EVENT SHALL THE CONTIBUTORS OR COPYRIGHT
185: * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
186: * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
187: * ARISING FROM, OUT OF OR IN CONNECTION WITH THE
188: * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
189: * ________________________________________________________________
190: * National Laboratory for Applied Network Research
191: * National Center for Supercomputing Applications
192: * University of Illinois at Urbana-Champaign
193: * http://www.ncsa.uiuc.edu
194: * ________________________________________________________________
195: *
196: * tcp_window_size.c
197: * by Mark Gates <mgates@nlanr.net>
198: * -------------------------------------------------------------------
199: * set/getsockopt
200: * ------------------------------------------------------------------- */
201:
202: =====
203:
204: This software contains source code (src/units.{c.h}) that is:
205:
206: /*---------------------------------------------------------------
207: * Copyright (c) 1999,2000,2001,2002,2003
208: * The Board of Trustees of the University of Illinois
209: * All Rights Reserved.
210: *---------------------------------------------------------------
211: * Permission is hereby granted, free of charge, to any person
212: * obtaining a copy of this software (Iperf) and associated
213: * documentation files (the "Software"), to deal in the Software
214: * without restriction, including without limitation the
215: * rights to use, copy, modify, merge, publish, distribute,
216: * sublicense, and/or sell copies of the Software, and to permit
217: * persons to whom the Software is furnished to do
218: * so, subject to the following conditions:
219: *
220: *
221: * Redistributions of source code must retain the above
222: * copyright notice, this list of conditions and
223: * the following disclaimers.
224: *
225: *
226: * Redistributions in binary form must reproduce the above
227: * copyright notice, this list of conditions and the following
228: * disclaimers in the documentation and/or other materials
229: * provided with the distribution.
230: *
231: *
232: * Neither the names of the University of Illinois, NCSA,
233: * nor the names of its contributors may be used to endorse
234: * or promote products derived from this Software without
235: * specific prior written permission.
236: *
237: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
238: * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
239: * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
240: * NONINFRINGEMENT. IN NO EVENT SHALL THE CONTIBUTORS OR COPYRIGHT
241: * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
242: * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
243: * ARISING FROM, OUT OF OR IN CONNECTION WITH THE
244: * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
245: * ________________________________________________________________
246: * National Laboratory for Applied Network Research
247: * National Center for Supercomputing Applications
248: * University of Illinois at Urbana-Champaign
249: * http://www.ncsa.uiuc.edu
250: * ________________________________________________________________
251: *
252: * stdio.c
253: * by Mark Gates <mgates@nlanr.net>
254: * and Ajay Tirumalla <tirumala@ncsa.uiuc.edu>
255: * -------------------------------------------------------------------
256: * input and output numbers, converting with kilo, mega, giga
257: * ------------------------------------------------------------------- */
258:
259: =====
260:
261: This software contains source code (src/portable_endian.h) that is:
262:
263: // "License": Public Domain
264: // I, Mathias Panzenböck, place this file hereby into the public domain. Use it at your own risk for whatever you like.
265:
266: =====
267:
268:
269:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>