Deleted Added
full compact
ng_vjc.c (69922) ng_vjc.c (70159)
1
2/*
3 * ng_vjc.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

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

31 * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
35 * OF SUCH DAMAGE.
36 *
37 * Author: Archie Cobbs <archie@freebsd.org>
38 *
1
2/*
3 * ng_vjc.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

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

31 * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
35 * OF SUCH DAMAGE.
36 *
37 * Author: Archie Cobbs <archie@freebsd.org>
38 *
39 * $FreeBSD: head/sys/netgraph/ng_vjc.c 69922 2000-12-12 18:52:14Z julian $
39 * $FreeBSD: head/sys/netgraph/ng_vjc.c 70159 2000-12-18 20:03:32Z julian $
40 * $Whistle: ng_vjc.c,v 1.17 1999/11/01 09:24:52 julian Exp $
41 */
42
43/*
44 * This node performs Van Jacobson IP header (de)compression.
45 * You must have included net/slcompress.c in your kernel compilation.
46 */
47

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

217 NULL,
218 NULL,
219 },
220 { 0 }
221};
222
223/* Node type descriptor */
224static struct ng_type ng_vjc_typestruct = {
40 * $Whistle: ng_vjc.c,v 1.17 1999/11/01 09:24:52 julian Exp $
41 */
42
43/*
44 * This node performs Van Jacobson IP header (de)compression.
45 * You must have included net/slcompress.c in your kernel compilation.
46 */
47

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

217 NULL,
218 NULL,
219 },
220 { 0 }
221};
222
223/* Node type descriptor */
224static struct ng_type ng_vjc_typestruct = {
225 NG_VERSION,
225 NG_ABI_VERSION,
226 NG_VJC_NODE_TYPE,
227 NULL,
228 ng_vjc_constructor,
229 ng_vjc_rcvmsg,
230 ng_vjc_rmnode,
231 ng_vjc_newhook,
232 NULL,
233 NULL,

--- 392 unchanged lines hidden ---
226 NG_VJC_NODE_TYPE,
227 NULL,
228 ng_vjc_constructor,
229 ng_vjc_rcvmsg,
230 ng_vjc_rmnode,
231 ng_vjc_newhook,
232 NULL,
233 NULL,

--- 392 unchanged lines hidden ---