ng_tee.c (859a4d166c0fc97b248bf33c8745b7494934b0bf) ng_tee.c (589f6ed8ce4b9da11cbdce95d6dcf9ad45792175)
1
2/*
3 * ng_tee.c
4 *
5 * Copyright (c) 1996-1999 Whistle Communications, Inc.
6 * All rights reserved.
7 *
8 * Subject to the following obligations and disclaimer of warranty, use and

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

123 NULL,
124 &ng_tee_stats_type
125 },
126 { 0 }
127};
128
129/* Netgraph type descriptor */
130static struct ng_type ng_tee_typestruct = {
1
2/*
3 * ng_tee.c
4 *
5 * Copyright (c) 1996-1999 Whistle Communications, Inc.
6 * All rights reserved.
7 *
8 * Subject to the following obligations and disclaimer of warranty, use and

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

123 NULL,
124 &ng_tee_stats_type
125 },
126 { 0 }
127};
128
129/* Netgraph type descriptor */
130static struct ng_type ng_tee_typestruct = {
131 NG_VERSION,
131 NG_ABI_VERSION,
132 NG_TEE_NODE_TYPE,
133 NULL,
134 ngt_constructor,
135 ngt_rcvmsg,
136 ngt_rmnode,
137 ngt_newhook,
138 NULL,
139 NULL,

--- 246 unchanged lines hidden ---
132 NG_TEE_NODE_TYPE,
133 NULL,
134 ngt_constructor,
135 ngt_rcvmsg,
136 ngt_rmnode,
137 ngt_newhook,
138 NULL,
139 NULL,

--- 246 unchanged lines hidden ---