copyright 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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-2004 Roger Dingledine
  8. Copyright (c) 2002,2003 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 Peter Palfrader <weasel@debian.org>
  13. The tor code is under this license:
  14. ===============================================================================
  15. Copyright (c) 2001-2004, Roger Dingledine
  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. tree.h by Niels Provos is licensed as follows:
  41. * Copyright 2002 Niels Provos <provos@citi.umich.edu>
  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. *
  53. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  54. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  55. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  56. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  57. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  58. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  59. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  60. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  61. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  62. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  63. ===============================================================================
  64. strlcat and strlcpy by Todd C. Miller are licensed under the following license:
  65. * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
  66. * All rights reserved.
  67. *
  68. * Redistribution and use in source and binary forms, with or without
  69. * modification, are permitted provided that the following conditions
  70. * are met:
  71. * 1. Redistributions of source code must retain the above copyright
  72. * notice, this list of conditions and the following disclaimer.
  73. * 2. Redistributions in binary form must reproduce the above copyright
  74. * notice, this list of conditions and the following disclaimer in the
  75. * documentation and/or other materials provided with the distribution.
  76. * 3. The name of the author may not be used to endorse or promote products
  77. * derived from this software without specific prior written permission.
  78. *
  79. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
  80. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  81. * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
  82. * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  83. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  84. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  85. * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  86. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  87. * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  88. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.