xref: /dflybsd-src/lib/libipfw3/basic/ipfw3_basic.h (revision 6a03354eaf5595cb09622704ea7d2ef2794ccffb)
1*6a03354eSMatthew Dillon /*
2*6a03354eSMatthew Dillon  * Copyright (c) 2014 The DragonFly Project.  All rights reserved.
3*6a03354eSMatthew Dillon  *
4*6a03354eSMatthew Dillon  * This code is derived from software contributed to The DragonFly Project
5*6a03354eSMatthew Dillon  * by Bill Yuan <bycn82@gmail.com>
6*6a03354eSMatthew Dillon  *
7*6a03354eSMatthew Dillon  * Redistribution and use in source and binary forms, with or without
8*6a03354eSMatthew Dillon  * modification, are permitted provided that the following conditions
9*6a03354eSMatthew Dillon  * are met:
10*6a03354eSMatthew Dillon  *
11*6a03354eSMatthew Dillon  * 1. Redistributions of source code must retain the above copyright
12*6a03354eSMatthew Dillon  *    notice, this list of conditions and the following disclaimer.
13*6a03354eSMatthew Dillon  * 2. Redistributions in binary form must reproduce the above copyright
14*6a03354eSMatthew Dillon  *    notice, this list of conditions and the following disclaimer in
15*6a03354eSMatthew Dillon  *    the documentation and/or other materials provided with the
16*6a03354eSMatthew Dillon  *    distribution.
17*6a03354eSMatthew Dillon  * 3. Neither the name of The DragonFly Project nor the names of its
18*6a03354eSMatthew Dillon  *    contributors may be used to endorse or promote products derived
19*6a03354eSMatthew Dillon  *    from this software without specific, prior written permission.
20*6a03354eSMatthew Dillon  *
21*6a03354eSMatthew Dillon  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22*6a03354eSMatthew Dillon  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23*6a03354eSMatthew Dillon  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24*6a03354eSMatthew Dillon  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25*6a03354eSMatthew Dillon  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26*6a03354eSMatthew Dillon  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27*6a03354eSMatthew Dillon  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28*6a03354eSMatthew Dillon  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29*6a03354eSMatthew Dillon  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30*6a03354eSMatthew Dillon  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31*6a03354eSMatthew Dillon  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32*6a03354eSMatthew Dillon  * SUCH DAMAGE.
33*6a03354eSMatthew Dillon  */
34*6a03354eSMatthew Dillon 
35*6a03354eSMatthew Dillon #ifndef _IPFW_BASIC_H
36*6a03354eSMatthew Dillon #define _IPFW_BASIC_H
37*6a03354eSMatthew Dillon 
38*6a03354eSMatthew Dillon #include <../../../sys/net/ipfw3_basic/ip_fw3_basic.h>
39*6a03354eSMatthew Dillon 
40*6a03354eSMatthew Dillon #endif
41