copyright 5.2 KB

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