NetBSD/sys/netiso
dyoung 72fa642a86 Poison struct route->ro_rt uses in the kernel by changing the name
to _ro_rt.  Use rtcache_getrt() to access a route cache's struct
rtentry *.

Introduce struct ifnet->if_dl that always points at the interface
identifier/link-layer address.  Make code that treated the first
ifaddr on struct ifnet->if_addrlist as the interface address use
if_dl, instead.

Remove stale debugging code from net/route.c.  Move the rtflush()
code into rtcache_clear() and delete rtflush().  Delete rtalloc(),
because nothing uses it any more.

Make ND6_HINT an inline, lowercase subroutine, nd6_hint.

I've done my best to convert IP Filter, the ISO stack, and the
AppleTalk stack to rtcache_getrt().  They compile, but I have not
tested them.  I have given the changes to PF, GRE, IPv4 and IPv6
stacks a lot of exercise.
2007-12-20 19:53:29 +00:00
..
xebec
Makefile
README
argo_debug.h
clnl.h
clnp.h
clnp_debug.c
clnp_er.c Poison struct route->ro_rt uses in the kernel by changing the name 2007-12-20 19:53:29 +00:00
clnp_frag.c
clnp_input.c Use IFADDR_FOREACH(). 2007-12-04 10:31:14 +00:00
clnp_options.c
clnp_output.c Poison struct route->ro_rt uses in the kernel by changing the name 2007-12-20 19:53:29 +00:00
clnp_raw.c
clnp_stat.h
clnp_subr.c Poison struct route->ro_rt uses in the kernel by changing the name 2007-12-20 19:53:29 +00:00
clnp_timer.c
cltp_usrreq.c
cltp_var.h
cons.h
cons_pcb.h
eonvar.h
esis.c Use IFADDR_FOREACH(). 2007-12-04 10:31:14 +00:00
esis.h Take steps to hide the radix_node implementation of the forwarding table 2007-07-19 20:48:52 +00:00
files.netiso
idrp_usrreq.c
idrp_var.h
if_eon.c Poison struct route->ro_rt uses in the kernel by changing the name 2007-12-20 19:53:29 +00:00
iso.c Use ifa_insert(), ifa_remove(). 2007-12-06 00:28:36 +00:00
iso.h de-__P()ify 2007-11-21 16:49:08 +00:00
iso_chksum.c
iso_errno.h
iso_pcb.c Poison struct route->ro_rt uses in the kernel by changing the name 2007-12-20 19:53:29 +00:00
iso_pcb.h
iso_proto.c Use struct initializers. No functional change. 2007-12-07 18:49:35 +00:00
iso_snpac.c We cannot sleep in a software interrupt, so do not sockaddr_dl_alloc(..., 2007-09-02 19:42:21 +00:00
iso_snpac.h
iso_var.h Extract common code, creating a subroutine if_purgeaddrs(ifp, 2007-12-05 23:47:17 +00:00
tp.trans
tp_astring.c
tp_clnp.h
tp_cons.c
tp_driver.c
tp_emit.c
tp_events.h
tp_inet.c Poison struct route->ro_rt uses in the kernel by changing the name 2007-12-20 19:53:29 +00:00
tp_input.c Do not use insque/remque from libkern; they are about to be removed. 2007-11-09 21:00:05 +00:00
tp_ip.h
tp_iso.c Poison struct route->ro_rt uses in the kernel by changing the name 2007-12-20 19:53:29 +00:00
tp_meas.c
tp_meas.h
tp_output.c Do not use insque/remque from libkern; they are about to be removed. 2007-11-09 21:00:05 +00:00
tp_param.h
tp_pcb.c Do not use insque/remque from libkern; they are about to be removed. 2007-11-09 21:00:05 +00:00
tp_pcb.h Poison struct route->ro_rt uses in the kernel by changing the name 2007-12-20 19:53:29 +00:00
tp_seq.h
tp_stat.h
tp_states.h
tp_states.init
tp_subr.c
tp_subr2.c Poison struct route->ro_rt uses in the kernel by changing the name 2007-12-20 19:53:29 +00:00
tp_timer.c
tp_timer.h
tp_tpdu.h
tp_trace.c
tp_trace.h
tp_user.h
tp_usrreq.c Do not use insque/remque from libkern; they are about to be removed. 2007-11-09 21:00:05 +00:00
tp_var.h

README

In case you were wondering why this code is still present:

The ISO (or OSI) stack is still in use by many router vendors (e.g., using
IS-IS the OSI equivalent of OSPF, to carry IP routes).

Chris.
chopps@NetBSD.org