Deleted Added
full compact
netgraph.h (74078) netgraph.h (74914)
1/*
2 * netgraph.h
3 *
4 * Copyright (c) 1996-1999 Whistle Communications, Inc.
5 * All rights reserved.
6 *
7 * Subject to the following obligations and disclaimer of warranty, use and
8 * redistribution of this software, in source or object code forms, with or

--- 21 unchanged lines hidden (view full) ---

30 * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
34 * OF SUCH DAMAGE.
35 *
36 * Author: Julian Elischer <julian@freebsd.org>
37 *
1/*
2 * netgraph.h
3 *
4 * Copyright (c) 1996-1999 Whistle Communications, Inc.
5 * All rights reserved.
6 *
7 * Subject to the following obligations and disclaimer of warranty, use and
8 * redistribution of this software, in source or object code forms, with or

--- 21 unchanged lines hidden (view full) ---

30 * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
34 * OF SUCH DAMAGE.
35 *
36 * Author: Julian Elischer <julian@freebsd.org>
37 *
38 * $FreeBSD: head/sys/netgraph/netgraph.h 74078 2001-03-10 16:31:00Z julian $
38 * $FreeBSD: head/sys/netgraph/netgraph.h 74914 2001-03-28 09:17:56Z jhb $
39 * $Whistle: netgraph.h,v 1.29 1999/11/01 07:56:13 julian Exp $
40 */
41
42#ifndef _NETGRAPH_NETGRAPH_H_
43#define _NETGRAPH_NETGRAPH_H_ 1
44
45#ifndef _KERNEL
46#error "This file should not be included in user level programs"
47#endif
48
49#include <sys/queue.h>
39 * $Whistle: netgraph.h,v 1.29 1999/11/01 07:56:13 julian Exp $
40 */
41
42#ifndef _NETGRAPH_NETGRAPH_H_
43#define _NETGRAPH_NETGRAPH_H_ 1
44
45#ifndef _KERNEL
46#error "This file should not be included in user level programs"
47#endif
48
49#include <sys/queue.h>
50#include <sys/lock.h>
50#include <sys/malloc.h>
51#include <sys/module.h>
52#include <sys/mutex.h>
53/* debugging options */
54#define NETGRAPH_DEBUG
55#define NG_SEPARATE_MALLOC /* make modules use their own malloc types */
56
57/*

--- 1079 unchanged lines hidden ---
51#include <sys/malloc.h>
52#include <sys/module.h>
53#include <sys/mutex.h>
54/* debugging options */
55#define NETGRAPH_DEBUG
56#define NG_SEPARATE_MALLOC /* make modules use their own malloc types */
57
58/*

--- 1079 unchanged lines hidden ---