Deleted Added
full compact
ng_bridge.c (69922) ng_bridge.c (70159)
1
2/*
3 * ng_bridge.c
4 *
5 * Copyright (c) 2000 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_bridge.c
4 *
5 * Copyright (c) 2000 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_bridge.c 69922 2000-12-12 18:52:14Z julian $
39 * $FreeBSD: head/sys/netgraph/ng_bridge.c 70159 2000-12-18 20:03:32Z julian $
40 */
41
42/*
43 * ng_bridge(4) netgraph node type
44 *
45 * The node performs standard intelligent Ethernet bridging over
46 * each of its connected hooks, or links. A simple loop detection
47 * algorithm is included which disables a link for priv->conf.loopTimeout

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

261 NULL,
262 &ng_bridge_host_ary_type
263 },
264 { 0 }
265};
266
267/* Node type descriptor */
268static struct ng_type ng_bridge_typestruct = {
40 */
41
42/*
43 * ng_bridge(4) netgraph node type
44 *
45 * The node performs standard intelligent Ethernet bridging over
46 * each of its connected hooks, or links. A simple loop detection
47 * algorithm is included which disables a link for priv->conf.loopTimeout

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

261 NULL,
262 &ng_bridge_host_ary_type
263 },
264 { 0 }
265};
266
267/* Node type descriptor */
268static struct ng_type ng_bridge_typestruct = {
269 NG_VERSION,
269 NG_ABI_VERSION,
270 NG_BRIDGE_NODE_TYPE,
271 NULL,
272 ng_bridge_constructor,
273 ng_bridge_rcvmsg,
274 ng_bridge_rmnode,
275 ng_bridge_newhook,
276 NULL,
277 NULL,

--- 732 unchanged lines hidden ---
270 NG_BRIDGE_NODE_TYPE,
271 NULL,
272 ng_bridge_constructor,
273 ng_bridge_rcvmsg,
274 ng_bridge_rmnode,
275 ng_bridge_newhook,
276 NULL,
277 NULL,

--- 732 unchanged lines hidden ---