LICENSE 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. Copyright (c) 2013-2015 Tommi Virtanen.
  2. Copyright (c) 2009, 2011, 2012 The Go Authors.
  3. All rights reserved.
  4. Redistribution and use in source and binary forms, with or without
  5. modification, are permitted provided that the following conditions are
  6. met:
  7. * Redistributions of source code must retain the above copyright
  8. notice, this list of conditions and the following disclaimer.
  9. * Redistributions in binary form must reproduce the above
  10. copyright notice, this list of conditions and the following disclaimer
  11. in the documentation and/or other materials provided with the
  12. distribution.
  13. * Neither the name of Google Inc. nor the names of its
  14. contributors may be used to endorse or promote products derived from
  15. this software without specific prior written permission.
  16. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  17. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  18. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  19. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  20. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  21. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  22. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  23. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  24. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  26. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27. The following included software components have additional copyright
  28. notices and license terms that may differ from the above.
  29. File fuse.go:
  30. // Adapted from Plan 9 from User Space's src/cmd/9pfuse/fuse.c,
  31. // which carries this notice:
  32. //
  33. // The files in this directory are subject to the following license.
  34. //
  35. // The author of this software is Russ Cox.
  36. //
  37. // Copyright (c) 2006 Russ Cox
  38. //
  39. // Permission to use, copy, modify, and distribute this software for any
  40. // purpose without fee is hereby granted, provided that this entire notice
  41. // is included in all copies of any software which is or includes a copy
  42. // or modification of this software and in all copies of the supporting
  43. // documentation for such software.
  44. //
  45. // THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
  46. // WARRANTY. IN PARTICULAR, THE AUTHOR MAKES NO REPRESENTATION OR WARRANTY
  47. // OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR ITS
  48. // FITNESS FOR ANY PARTICULAR PURPOSE.
  49. File fuse_kernel.go:
  50. // Derived from FUSE's fuse_kernel.h
  51. /*
  52. This file defines the kernel interface of FUSE
  53. Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu>
  54. This -- and only this -- header file may also be distributed under
  55. the terms of the BSD Licence as follows:
  56. Copyright (C) 2001-2007 Miklos Szeredi. All rights reserved.
  57. Redistribution and use in source and binary forms, with or without
  58. modification, are permitted provided that the following conditions
  59. are met:
  60. 1. Redistributions of source code must retain the above copyright
  61. notice, this list of conditions and the following disclaimer.
  62. 2. Redistributions in binary form must reproduce the above copyright
  63. notice, this list of conditions and the following disclaimer in the
  64. documentation and/or other materials provided with the distribution.
  65. THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  66. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  67. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  68. ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
  69. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  70. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  71. OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  72. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  73. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  74. OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  75. SUCH DAMAGE.
  76. */