copyright 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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://freehaven.net/tor/
  4. Upstream Authors: Roger Dingledine <arma@freehaven.net>
  5. Nick Mathewson <nickm@freehaven.net>
  6. Matej Pfajfar <badbytes@freehaven.net>
  7. Copyright (c) 2001-2005 Roger Dingledine
  8. Copyright (c) 2002-2005 Nick Mathewson
  9. Copyright (c) 2001-2003 Matej Pfajfar
  10. strlcat, strlcpy: Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
  11. tree.h: Copyright (c) 2002 Niels Provos <provos@citi.umich.edu>
  12. Modifications for Debian: Copyright (c) 2004, 2005 Peter Palfrader
  13. The tor code is under this license:
  14. ===============================================================================
  15. Copyright (c) 2001-2004, Roger Dingledine
  16. Copyright (c) 2004-2005, Roger Dingledine, Nick Mathewson
  17. Redistribution and use in source and binary forms, with or without
  18. modification, are permitted provided that the following conditions are
  19. met:
  20. * Redistributions of source code must retain the above copyright
  21. notice, this list of conditions and the following disclaimer.
  22. * Redistributions in binary form must reproduce the above
  23. copyright notice, this list of conditions and the following disclaimer
  24. in the documentation and/or other materials provided with the
  25. distribution.
  26. * Neither the names of the copyright owners nor the names of its
  27. contributors may be used to endorse or promote products derived from
  28. this software without specific prior written permission.
  29. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  30. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  31. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  32. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  33. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  34. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  35. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  36. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  37. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  39. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  40. ===============================================================================
  41. tree.h by Niels Provos is licensed as follows:
  42. * Copyright 2002 Niels Provos <provos@citi.umich.edu>
  43. * All rights reserved.
  44. *
  45. * Redistribution and use in source and binary forms, with or without
  46. * modification, are permitted provided that the following conditions
  47. * are met:
  48. * 1. Redistributions of source code must retain the above copyright
  49. * notice, this list of conditions and the following disclaimer.
  50. * 2. Redistributions in binary form must reproduce the above copyright
  51. * notice, this list of conditions and the following disclaimer in the
  52. * documentation and/or other materials provided with the distribution.
  53. *
  54. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  55. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  56. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  57. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  58. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  59. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  60. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  61. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  62. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  63. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  64. ===============================================================================
  65. strlcat and strlcpy by Todd C. Miller are licensed under the following license:
  66. * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
  67. * All rights reserved.
  68. *
  69. * Redistribution and use in source and binary forms, with or without
  70. * modification, are permitted provided that the following conditions
  71. * are met:
  72. * 1. Redistributions of source code must retain the above copyright
  73. * notice, this list of conditions and the following disclaimer.
  74. * 2. Redistributions in binary form must reproduce the above copyright
  75. * notice, this list of conditions and the following disclaimer in the
  76. * documentation and/or other materials provided with the distribution.
  77. * 3. The name of the author may not be used to endorse or promote products
  78. * derived from this software without specific prior written permission.
  79. *
  80. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
  81. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  82. * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
  83. * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  84. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  85. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  86. * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  87. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  88. * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  89. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.