copyright 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. This package was debianized by Peter Palfrader <weasel@debian.org> on
  2. Sat, 10 Jan 2004 11:20:06 +0100.
  3. It was downloaded from http://tor.eff.org/
  4. Upstream Authors: Roger Dingledine <arma@freehaven.net>
  5. Nick Mathewson <nickm@freehaven.net>
  6. Copyright (c) 2001 Matej Pfajfar
  7. Copyright (c) 2001-2004, Roger Dingledine
  8. Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson
  9. Copyright (c) 2007-2008, The Tor Project, Inc.
  10. strlcat, strlcpy: Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
  11. ht.h: Copyright (c) 2002, Christopher Clark, 2006 Nick Mathewson
  12. Modifications for Debian: Copyright (c) 2004, 2005, 2006, 2007, 2008 Peter Palfrader
  13. Tor is distributed under this license:
  14. ===============================================================================
  15. Copyright (c) 2001-2004, Roger Dingledine
  16. Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson
  17. Copyright (c) 2007-2008, The Tor Project, Inc.
  18. Redistribution and use in source and binary forms, with or without
  19. modification, are permitted provided that the following conditions are
  20. met:
  21. * Redistributions of source code must retain the above copyright
  22. notice, this list of conditions and the following disclaimer.
  23. * Redistributions in binary form must reproduce the above
  24. copyright notice, this list of conditions and the following disclaimer
  25. in the documentation and/or other materials provided with the
  26. distribution.
  27. * Neither the names of the copyright owners nor the names of its
  28. contributors may be used to endorse or promote products derived from
  29. this software without specific prior written permission.
  30. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  31. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  32. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  33. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  34. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  35. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  36. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  37. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  38. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  39. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  40. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  41. ===============================================================================
  42. strlcat and strlcpy by Todd C. Miller are licensed under the following license:
  43. * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
  44. * All rights reserved.
  45. *
  46. * Redistribution and use in source and binary forms, with or without
  47. * modification, are permitted provided that the following conditions
  48. * are met:
  49. * 1. Redistributions of source code must retain the above copyright
  50. * notice, this list of conditions and the following disclaimer.
  51. * 2. Redistributions in binary form must reproduce the above copyright
  52. * notice, this list of conditions and the following disclaimer in the
  53. * documentation and/or other materials provided with the distribution.
  54. * 3. The name of the author may not be used to endorse or promote products
  55. * derived from this software without specific prior written permission.
  56. *
  57. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
  58. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  59. * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
  60. * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  61. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  62. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  63. * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  64. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  65. * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  66. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  67. ===============================================================================
  68. ht.h by Nick Mathewson is licensed as follows:
  69. /*
  70. * Copyright 2005, Nick Mathewson. Implementation logic is adapted from code
  71. * by Cristopher Clark, retrofit to allow drop-in memory management, and to
  72. * use the same interface as Niels Provos's HT_H. I'm not sure whether this
  73. * is a derived work any more, but whether it is or not, the license below
  74. * applies.
  75. *
  76. * Copyright (c) 2002, Christopher Clark
  77. * All rights reserved.
  78. *
  79. * Redistribution and use in source and binary forms, with or without
  80. * modification, are permitted provided that the following conditions
  81. * are met:
  82. *
  83. * * Redistributions of source code must retain the above copyright
  84. * notice, this list of conditions and the following disclaimer.
  85. *
  86. * * Redistributions in binary form must reproduce the above copyright
  87. * notice, this list of conditions and the following disclaimer in the
  88. * documentation and/or other materials provided with the distribution.
  89. *
  90. * * Neither the name of the original author; nor the names of any contributors
  91. * may be used to endorse or promote products derived from this software
  92. * without specific prior written permission.
  93. *
  94. *
  95. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  96. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  97. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  98. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
  99. * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  100. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  101. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  102. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  103. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  104. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  105. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  106. */