From 6cdcc159763ff167b37ccdb648dabbf2bb2275a5 Mon Sep 17 00:00:00 2001 From: Max Khon Date: Fri, 24 Jan 2003 01:32:20 +0000 Subject: - add support for IPX (tested with mount -t nwfs and mars_nwe), IP fast forwarding, SIOCGIFADDR, setting hardware address (not currently enabled in cm driver), multicasts (experimental) - add ARC_MAX_DATA, use IF_HANDOFF, remove arc_sprintf() and some unused variables - if_simloop logic is made more similar to ethernet - drop not ours packets early (if we are not in promiscous mode) Submitted by: mark tinguely (partially) --- sys/modules/arcnet/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'sys/modules') diff --git a/sys/modules/arcnet/Makefile b/sys/modules/arcnet/Makefile index 9132566f077d..ab1d961bdfe0 100644 --- a/sys/modules/arcnet/Makefile +++ b/sys/modules/arcnet/Makefile @@ -4,7 +4,7 @@ KMOD= arcnet SRCS= if_arcsubr.c -SRCS+= opt_inet.h opt_inet6.h +SRCS+= opt_inet.h opt_inet6.h opt_ipx.h EXPORT_SYMS= arc_frag_init \ arc_frag_next \ @@ -19,4 +19,7 @@ EXPORT_SYMS= arc_frag_init \ opt_inet.h opt_inet6.h: echo "#define INET 1" > ${.TARGET} +opt_ipx.h: + echo "#define IPX 1" > ${.TARGET} + .include -- cgit v1.3