Date: Sat, 10 May 1997 02:59:01 -0700 (PDT) From: John Hay <jhay@FreeBSD.ORG> To: CVS-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/netipx ipx.c ipx.h ipx_cksum.c ipx_error.c ipx_error.h ipx_if.h ipx_input.c ipx_ip.c ipx_ip.h ipx_outputfl.c ipx_pcb.c ipx_pcb.h ipx_proto.c ipx_usrreq.c ipx_var.h spx.h spx_debug.c spx_debug.h spx_timer.h spx_usrreq.c spx_var.h Message-ID: <199705100959.CAA22074@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
jhay 97/05/10 02:59:01 Modified: sys/netipx ipx.c ipx.h ipx_cksum.c ipx_error.c ipx_error.h ipx_if.h ipx_input.c ipx_ip.c ipx_ip.h ipx_outputfl.c ipx_pcb.c ipx_pcb.h ipx_proto.c ipx_usrreq.c ipx_var.h spx.h spx_debug.c spx_debug.h spx_timer.h spx_usrreq.c spx_var.h Log: Mega IPX commit. Use the MAC address of an interface for the host part of an IPX address and not the MAC address of the first interface for every IPX address. This is more inline with the way others like Novell do it. Mostly Submitted by: "Serge A. Babkin" <babkin@hq.icb.chel.su> Take out the error messages (the ip icmp equivalent) with #ifdef IPXERRORMSGS. This is bogus and as far as I could figure out IPX don't have anything like it. This is a leftover from its XNS heritage. If nobody complains, I will take it out completely in a few weeks. Add some more ipxstat statistics counters. Make ipxprintfs a sysctl variable and off by default. Add IPX Netbios "routing" support. This is off by default and can be switched on with a sysctl knob. General code cleanup to at least use the same style throughout the IPX code, but also be more style(9) conformant. Also make a lot of functions static. If I don't get any complaints I'll bring all of this over to the 2.2 tree in a few weeks. Revision Changes Path 1.10 +34 -61 src/sys/netipx/ipx.c 1.12 +36 -79 src/sys/netipx/ipx.h 1.6 +9 -3 src/sys/netipx/ipx_cksum.c 1.8 +19 -12 src/sys/netipx/ipx_error.c 1.8 +16 -6 src/sys/netipx/ipx_error.h 1.8 +4 -8 src/sys/netipx/ipx_if.h 1.13 +210 -80 src/sys/netipx/ipx_input.c 1.15 +63 -49 src/sys/netipx/ipx_ip.c 1.10 +2 -13 src/sys/netipx/ipx_ip.h 1.7 +130 -22 src/sys/netipx/ipx_outputfl.c 1.9 +67 -35 src/sys/netipx/ipx_pcb.c 1.10 +8 -8 src/sys/netipx/ipx_pcb.h 1.10 +11 -3 src/sys/netipx/ipx_proto.c 1.14 +33 -36 src/sys/netipx/ipx_usrreq.c 1.6 +44 -8 src/sys/netipx/ipx_var.h 1.12 +2 -19 src/sys/netipx/spx.h 1.9 +15 -13 src/sys/netipx/spx_debug.c 1.9 +3 -3 src/sys/netipx/spx_debug.h 1.8 +2 -6 src/sys/netipx/spx_timer.h 1.13 +150 -109 src/sys/netipx/spx_usrreq.c 1.7 +2 -13 src/sys/netipx/spx_var.h
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199705100959.CAA22074>