components/pflogd/pflogd.license
changeset 5569 c3326e2b8b45
parent 5567 1d593061210b
child 5570 0b0946d94dd3
equal deleted inserted replaced
5567:1d593061210b 5569:c3326e2b8b45
     1 --------------------------------------------------------------------------------
       
     2 This package brings a (modified) pflogd component coming from OpenBSD 5.5.
       
     3 --------------------------------------------------------------------------------
       
     4 
       
     5 pflogd.8:
       
     6 .\"     $OpenBSD: pflogd.8,v 1.46 2014/01/21 03:15:45 schwarze Exp $
       
     7 .\"
       
     8 .\" Copyright (c) 2001 Can Erkin Acar.  All rights reserved.
       
     9 .\"
       
    10 .\" Redistribution and use in source and binary forms, with or without
       
    11 .\" modification, are permitted provided that the following conditions
       
    12 .\" are met:
       
    13 .\" 1. Redistributions of source code must retain the above copyright
       
    14 .\"    notice, this list of conditions and the following disclaimer.
       
    15 .\" 2. Redistributions in binary form must reproduce the above copyright
       
    16 .\"    notice, this list of conditions and the following disclaimer in the
       
    17 .\"    documentation and/or other materials provided with the distribution.
       
    18 .\" 3. The name of the author may not be used to endorse or promote products
       
    19 .\"    derived from this software without specific prior written permission.
       
    20 .\"
       
    21 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
       
    22 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
       
    23 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
       
    24 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
       
    25 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
       
    26 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
       
    27 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
       
    28 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
       
    29 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
       
    30 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
       
    31 .\"
       
    32 
       
    33 pflogd.c:
       
    34 /*
       
    35  * Copyright (c) 2001 Theo de Raadt
       
    36  * Copyright (c) 2001 Can Erkin Acar
       
    37  * All rights reserved.
       
    38  *
       
    39  * Redistribution and use in source and binary forms, with or without
       
    40  * modification, are permitted provided that the following conditions
       
    41  * are met:
       
    42  *
       
    43  *    - Redistributions of source code must retain the above copyright
       
    44  *      notice, this list of conditions and the following disclaimer.
       
    45  *    - Redistributions in binary form must reproduce the above
       
    46  *      copyright notice, this list of conditions and the following
       
    47  *      disclaimer in the documentation and/or other materials provided
       
    48  *      with the distribution.
       
    49  *
       
    50  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
       
    51  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
       
    52  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
       
    53  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
       
    54  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
       
    55  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
       
    56  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
       
    57  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
       
    58  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
       
    59  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
       
    60  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
       
    61  * POSSIBILITY OF SUCH DAMAGE.
       
    62  */
       
    63 
       
    64 pflogd.h:
       
    65 /*
       
    66  * Copyright (c) 2003 Can Erkin Acar
       
    67  *
       
    68  * Permission to use, copy, modify, and distribute this software for any
       
    69  * purpose with or without fee is hereby granted, provided that the above
       
    70  * copyright notice and this permission notice appear in all copies.
       
    71  *
       
    72  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
       
    73  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
       
    74  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
       
    75  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
       
    76  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
       
    77  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
       
    78  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
       
    79  */
       
    80 
       
    81 privsep_fdpass.c:
       
    82 /*
       
    83  * Copyright 2001 Niels Provos <[email protected]>
       
    84  * All rights reserved.
       
    85  *
       
    86  * Copyright (c) 2002 Matthieu Herrb
       
    87  * All rights reserved.
       
    88  *
       
    89  * Redistribution and use in source and binary forms, with or without
       
    90  * modification, are permitted provided that the following conditions
       
    91  * are met:
       
    92  *
       
    93  *    - Redistributions of source code must retain the above copyright
       
    94  *      notice, this list of conditions and the following disclaimer.
       
    95  *    - Redistributions in binary form must reproduce the above
       
    96  *      copyright notice, this list of conditions and the following
       
    97  *      disclaimer in the documentation and/or other materials provided
       
    98  *      with the distribution.
       
    99  *
       
   100  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
       
   101  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
       
   102  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
       
   103  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
       
   104  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
       
   105  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
       
   106  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
       
   107  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
       
   108  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
       
   109  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
       
   110  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
       
   111  * POSSIBILITY OF SUCH DAMAGE.
       
   112  */
       
   113 
       
   114 privsep.c:
       
   115 /*
       
   116  * Copyright (c) 2003 Can Erkin Acar
       
   117  * Copyright (c) 2003 Anil Madhavapeddy <[email protected]>
       
   118  *
       
   119  * Permission to use, copy, modify, and distribute this software for any
       
   120  * purpose with or without fee is hereby granted, provided that the above
       
   121  * copyright notice and this permission notice appear in all copies.
       
   122  *
       
   123  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
       
   124  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
       
   125  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
       
   126  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
       
   127  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
       
   128  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
       
   129  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
       
   130  */