Deleted Added
full compact
ng_atm.c (183550) ng_atm.c (185571)
1/*-
2 * Copyright (c) 2001-2003
3 * Fraunhofer Institute for Open Communication Systems (FhG Fokus).
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

27 * Author: Hartmut Brandt <harti@freebsd.org>
28 */
29
30/*
31 * Netgraph module to connect NATM interfaces to netgraph.
32 */
33
34#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2001-2003
3 * Fraunhofer Institute for Open Communication Systems (FhG Fokus).
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

27 * Author: Hartmut Brandt <harti@freebsd.org>
28 */
29
30/*
31 * Netgraph module to connect NATM interfaces to netgraph.
32 */
33
34#include <sys/cdefs.h>
35__FBSDID("$FreeBSD: head/sys/netgraph/atm/ng_atm.c 183550 2008-10-02 15:37:58Z zec $");
35__FBSDID("$FreeBSD: head/sys/netgraph/atm/ng_atm.c 185571 2008-12-02 21:37:28Z bz $");
36
37#include <sys/param.h>
38#include <sys/systm.h>
39#include <sys/kernel.h>
40#include <sys/malloc.h>
41#include <sys/mbuf.h>
42#include <sys/errno.h>
43#include <sys/syslog.h>

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

49#include <sys/vimage.h>
50
51#include <net/if.h>
52#include <net/if_types.h>
53#include <net/if_arp.h>
54#include <net/if_var.h>
55#include <net/if_media.h>
56#include <net/if_atm.h>
36
37#include <sys/param.h>
38#include <sys/systm.h>
39#include <sys/kernel.h>
40#include <sys/malloc.h>
41#include <sys/mbuf.h>
42#include <sys/errno.h>
43#include <sys/syslog.h>

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

49#include <sys/vimage.h>
50
51#include <net/if.h>
52#include <net/if_types.h>
53#include <net/if_arp.h>
54#include <net/if_var.h>
55#include <net/if_media.h>
56#include <net/if_atm.h>
57#include <net/vnet.h>
57
58#include <netgraph/ng_message.h>
59#include <netgraph/netgraph.h>
60#include <netgraph/ng_parse.h>
61#include <netgraph/atm/ng_atm.h>
62
63/*
64 * Hooks in the NATM code

--- 1385 unchanged lines hidden ---
58
59#include <netgraph/ng_message.h>
60#include <netgraph/netgraph.h>
61#include <netgraph/ng_parse.h>
62#include <netgraph/atm/ng_atm.h>
63
64/*
65 * Hooks in the NATM code

--- 1385 unchanged lines hidden ---