copyright 5.8 KB

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