Deleted Added
full compact
ng_ether.c (69922) ng_ether.c (70159)
1
2/*
3 * ng_ether.c
4 *
5 * Copyright (c) 1996-2000 Whistle Communications, Inc.
6 * All rights reserved.
7 *
8 * Subject to the following obligations and disclaimer of warranty, use and

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

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 * Authors: Archie Cobbs <archie@freebsd.org>
38 * Julian Elischer <julian@freebsd.org>
39 *
1
2/*
3 * ng_ether.c
4 *
5 * Copyright (c) 1996-2000 Whistle Communications, Inc.
6 * All rights reserved.
7 *
8 * Subject to the following obligations and disclaimer of warranty, use and

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

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 * Authors: Archie Cobbs <archie@freebsd.org>
38 * Julian Elischer <julian@freebsd.org>
39 *
40 * $FreeBSD: head/sys/netgraph/ng_ether.c 69922 2000-12-12 18:52:14Z julian $
40 * $FreeBSD: head/sys/netgraph/ng_ether.c 70159 2000-12-18 20:03:32Z julian $
41 */
42
43/*
44 * ng_ether(4) netgraph node type
45 */
46
47#include <sys/param.h>
48#include <sys/systm.h>

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

175 "setautosrc",
176 &ng_parse_int32_type,
177 NULL
178 },
179 { 0 }
180};
181
182static struct ng_type ng_ether_typestruct = {
41 */
42
43/*
44 * ng_ether(4) netgraph node type
45 */
46
47#include <sys/param.h>
48#include <sys/systm.h>

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

175 "setautosrc",
176 &ng_parse_int32_type,
177 NULL
178 },
179 { 0 }
180};
181
182static struct ng_type ng_ether_typestruct = {
183 NG_VERSION,
183 NG_ABI_VERSION,
184 NG_ETHER_NODE_TYPE,
185 ng_ether_mod_event,
186 ng_ether_constructor,
187 ng_ether_rcvmsg,
188 ng_ether_rmnode,
189 ng_ether_newhook,
190 NULL,
191 ng_ether_connect,

--- 628 unchanged lines hidden ---
184 NG_ETHER_NODE_TYPE,
185 ng_ether_mod_event,
186 ng_ether_constructor,
187 ng_ether_rcvmsg,
188 ng_ether_rmnode,
189 ng_ether_newhook,
190 NULL,
191 ng_ether_connect,

--- 628 unchanged lines hidden ---