taglinefilesource code
rt130drivers/net/new_tunnel.cstruct rtable *rt;           /* Route to the other host */
rt167drivers/net/new_tunnel.cif ((rt = ip_rt_route(iph->daddr, 0)) == NULL)
rt181drivers/net/new_tunnel.cif (rt->rt_flags & RTF_GATEWAY)
rt182drivers/net/new_tunnel.ctarget = rt->rt_gateway;
rt191drivers/net/new_tunnel.cip_rt_put(rt);
rt196drivers/net/new_tunnel.cip_rt_put(rt);
rt198drivers/net/new_tunnel.cif ((rt = ip_rt_route(target, 0)) == NULL)
rt208drivers/net/new_tunnel.ctdev = rt->rt_dev;
rt214drivers/net/new_tunnel.cip_rt_put(rt);
rt243drivers/net/new_tunnel.cip_rt_put(rt);
rt309drivers/net/new_tunnel.cip_rt_put(rt);
rt222include/asm-mips/asm.h#define MOVN(rd,rs,rt)                                  \
rt223include/asm-mips/asm.hmovn  rd,rs,rt
rt224include/asm-mips/asm.h#define MOVZ(rd,rs,rt)                                  \
rt225include/asm-mips/asm.hmovz  rd,rs,rt
rt227include/asm-mips/asm.h#define MOVN(rd,rs,rt)                                  \
rt228include/asm-mips/asm.hbnezl  rt,9f                           \
rt231include/asm-mips/asm.h#define MOVZ(rd,rs,rt)                                  \
rt232include/asm-mips/asm.hbeqzl  rt,9f                           \
rt233include/asm-mips/asm.hmovz  rd,rt                           \
rt236include/asm-mips/asm.h#define MOVN(rd,rs,rt)                                  \
rt237include/asm-mips/asm.hbeqz  rt,9f                           \
rt241include/asm-mips/asm.h#define MOVZ(rd,rs,rt)                                  \
rt242include/asm-mips/asm.hbneqz  rt,9f                           \
rt244include/asm-mips/asm.hmovz  rd,rt                           \
rt89include/net/ip.hextern int     ip_send(struct rtable *rt, struct sk_buff *skb, __u32 daddr, int len, struct device *dev, __u32 saddr);
rt194include/net/route.hextern int    ip_rt_new(struct rtentry *rt);
rt195include/net/route.hextern int    ip_rt_kill(struct rtentry *rt);
rt227include/net/route.hextern __inline__ void ip_rt_put(struct rtable * rt)
rt230include/net/route.hif (rt)
rt231include/net/route.hATOMIC_DECR(&rt->rt_refcnt);
rt268include/net/route.hstruct rtable * rt = *rp;
rt270include/net/route.hif (!rt || rt->rt_dst != daddr || !(rt->rt_flags&RTF_UP)
rt271include/net/route.h|| ((local==1)^((rt->rt_flags&RTF_LOCAL) != 0)))
rt273include/net/route.hip_rt_put(rt);
rt274include/net/route.hrt = ip_rt_route(daddr, local);
rt275include/net/route.h*rp = rt;
rt277include/net/route.hreturn rt;
rt147kernel/module.cstruct mod_routines rt;
rt172kernel/module.cmemcpy_fromfs(&rt, routines, sizeof rt);
rt189kernel/module.c(unsigned long) rt.init, (unsigned long) rt.cleanup));
rt190kernel/module.cmp->cleanup = rt.cleanup;
rt266kernel/module.cif ((*rt.init)() != 0) {
rt580net/appletalk/ddp.cstruct atalk_route *rt;
rt603net/appletalk/ddp.cfor(rt=atalk_router_list;rt!=NULL;rt=rt->next)
rt605net/appletalk/ddp.cif(r->rt_flags != rt->flags)
rt608net/appletalk/ddp.cif(ta->sat_addr.s_net == rt->target.s_net) 
rt610net/appletalk/ddp.cif(!(rt->flags&RTF_HOST))
rt612net/appletalk/ddp.cif(ta->sat_addr.s_node == rt->target.s_node)
rt634net/appletalk/ddp.cif(rt==NULL)
rt636net/appletalk/ddp.crt=(struct atalk_route *)kmalloc(sizeof(struct atalk_route), GFP_KERNEL);
rt637net/appletalk/ddp.cif(rt==NULL)
rt640net/appletalk/ddp.crt->next=atalk_router_list;
rt641net/appletalk/ddp.catalk_router_list=rt;
rt647net/appletalk/ddp.crt->target=ta->sat_addr;      
rt648net/appletalk/ddp.crt->dev=devhint;
rt649net/appletalk/ddp.crt->flags=r->rt_flags;
rt650net/appletalk/ddp.crt->gateway=ga->sat_addr;
rt868net/appletalk/ddp.cstruct rtentry rt;
rt870net/appletalk/ddp.cerr=verify_area(VERIFY_READ, arg, sizeof(rt));
rt873net/appletalk/ddp.cmemcpy_fromfs(&rt,arg,sizeof(rt));
rt878net/appletalk/ddp.cif(rt.rt_dst.sa_family!=AF_APPLETALK)
rt880net/appletalk/ddp.creturn atrtr_delete(&((struct sockaddr_at *)&rt.rt_dst)->sat_addr);
rt882net/appletalk/ddp.creturn atrtr_create(&rt, NULL);
rt925net/appletalk/ddp.cstruct atalk_route *rt;
rt933net/appletalk/ddp.crt=&atrtr_default;
rt935net/appletalk/ddp.cntohs(rt->gateway.s_net), rt->gateway.s_node, rt->flags,
rt936net/appletalk/ddp.crt->dev->name);
rt938net/appletalk/ddp.cfor (rt = atalk_router_list; rt != NULL; rt = rt->next)
rt941net/appletalk/ddp.cntohs(rt->target.s_net),rt->target.s_node,
rt942net/appletalk/ddp.cntohs(rt->gateway.s_net), rt->gateway.s_node, rt->flags,
rt943net/appletalk/ddp.crt->dev->name);
rt1492net/appletalk/ddp.cstruct atalk_route *rt;
rt1518net/appletalk/ddp.crt=atrtr_find(&ta);
rt1519net/appletalk/ddp.cif(rt==NULL || ddp->deh_hops==15)
rt1531net/appletalk/ddp.cif(rt->flags&RTF_GATEWAY)
rt1533net/appletalk/ddp.cta.s_net = rt->gateway.s_net;
rt1534net/appletalk/ddp.cta.s_node = rt->gateway.s_node;
rt1538net/appletalk/ddp.cskb_trim(skb,min(origlen, rt->dev->hard_header_len + 
rt1548net/appletalk/ddp.cif(aarp_send_ddp(rt->dev, skb, &ta, NULL)==-1)
rt1655net/appletalk/ddp.cstruct atalk_route *rt;
rt1703net/appletalk/ddp.crt=atrtr_find(&usat->sat_addr);
rt1704net/appletalk/ddp.cif(rt==NULL)
rt1706net/appletalk/ddp.cdev=rt->dev;
rt1713net/appletalk/ddp.crt=atrtr_find(&at_hint);
rt1714net/appletalk/ddp.cif(rt==NULL)
rt1716net/appletalk/ddp.cdev=rt->dev;
rt1784net/appletalk/ddp.cif((!(rt->flags&RTF_GATEWAY))&&(!(dev->flags&IFF_LOOPBACK)))
rt1818net/appletalk/ddp.cif ( rt->flags & RTF_GATEWAY ) {
rt1819net/appletalk/ddp.cgsat.sat_addr = rt->gateway;
rt1878net/ipv4/arp.cstruct rtable *rt;
rt1897net/ipv4/arp.crt = ip_rt_route(ip, 0);
rt1898net/ipv4/arp.cif (!rt)
rt1900net/ipv4/arp.cdev1 = rt->rt_dev;
rt1901net/ipv4/arp.cip_rt_put(rt);
rt82net/ipv4/ip_alias.cstruct rtable *rt;
rt105net/ipv4/ip_alias.crt = ip_rt_route(addr, 0);
rt106net/ipv4/ip_alias.cif(rt)
rt108net/ipv4/ip_alias.cdev=rt->rt_dev;
rt109net/ipv4/ip_alias.cip_rt_put(rt);
rt92net/ipv4/ip_forward.cstruct rtable *rt;  /* Route we use */
rt166net/ipv4/ip_forward.crt = ip_rt_route(target_addr, 0);
rt168net/ipv4/ip_forward.cif (rt == NULL)
rt187net/ipv4/ip_forward.craddr = rt->rt_gateway;
rt189net/ipv4/ip_forward.cif (opt->is_strictroute && (rt->rt_flags & RTF_GATEWAY)) {
rt194net/ipv4/ip_forward.cip_rt_put(rt);
rt203net/ipv4/ip_forward.cdev2 = rt->rt_dev;
rt204net/ipv4/ip_forward.chh = rt->rt_hh;
rt213net/ipv4/ip_forward.c(rt->rt_flags&RTF_MODIFIED) && !opt->srr)
rt227net/ipv4/ip_forward.crt=NULL;
rt253net/ipv4/ip_forward.cif(rt)
rt254net/ipv4/ip_forward.cip_rt_put(rt);
rt275net/ipv4/ip_forward.cif(rt)
rt276net/ipv4/ip_forward.cip_rt_put(rt);
rt293net/ipv4/ip_forward.cip_send(rt,skb2,raddr,skb->len,dev2,dev2->pa_addr);
rt333net/ipv4/ip_forward.cprintk("ip_forward: hh miss %08x via %08x\n", target_addr, rt->rt_gateway);
rt449net/ipv4/ip_forward.cif(rt)
rt450net/ipv4/ip_forward.cip_rt_put(rt);
rt453net/ipv4/ip_forward.cif(rt)
rt454net/ipv4/ip_forward.cip_rt_put(rt);
rt114net/ipv4/ip_output.cint ip_send(struct rtable * rt, struct sk_buff *skb, __u32 daddr, int len, struct device *dev, __u32 saddr)
rt128net/ipv4/ip_output.cif (rt && dev == rt->rt_dev && rt->rt_hh)
rt130net/ipv4/ip_output.cmemcpy(skb_push(skb,dev->hard_header_len),rt->rt_hh->hh_data,dev->hard_header_len);
rt131net/ipv4/ip_output.cif (rt->rt_hh->hh_uptodate)
rt134net/ipv4/ip_output.cprintk("ip_send: hh miss %08x via %08x\n", daddr, rt->rt_gateway);
rt151net/ipv4/ip_output.cstatic int ip_send_room(struct rtable * rt, struct sk_buff *skb, __u32 daddr, int len, struct device *dev, __u32 saddr)
rt161net/ipv4/ip_output.cif (rt && dev == rt->rt_dev && rt->rt_hh)
rt163net/ipv4/ip_output.cmemcpy(skb_push(skb,dev->hard_header_len),rt->rt_hh->hh_data,dev->hard_header_len);
rt164net/ipv4/ip_output.cif (rt->rt_hh->hh_uptodate)
rt167net/ipv4/ip_output.cprintk("ip_send_room: hh miss %08x via %08x\n", daddr, rt->rt_gateway);
rt196net/ipv4/ip_output.cstruct rtable *rt;
rt216net/ipv4/ip_output.crt = ip_check_route(rp, daddr, skb->localroute);
rt221net/ipv4/ip_output.cif (rt)
rt222net/ipv4/ip_output.cATOMIC_INCR(&rt->rt_refcnt);
rt225net/ipv4/ip_output.crt = ip_rt_route(daddr, skb->localroute);
rt230net/ipv4/ip_output.cif (rt == NULL)
rt236net/ipv4/ip_output.c*dev = rt->rt_dev;
rt240net/ipv4/ip_output.csaddr = rt ? rt->rt_src : (*dev)->pa_addr;
rt242net/ipv4/ip_output.craddr = rt ? rt->rt_gateway : 0;
rt244net/ipv4/ip_output.cif (opt && opt->is_strictroute && rt && (rt->rt_flags & RTF_GATEWAY))
rt246net/ipv4/ip_output.cip_rt_put(rt);
rt263net/ipv4/ip_output.ctmp = ip_send_room(rt, skb, raddr, len, *dev, saddr);
rt265net/ipv4/ip_output.ctmp = ip_send(rt, skb, raddr, len, *dev, saddr);
rt267net/ipv4/ip_output.cip_rt_put(rt);
rt576net/ipv4/ip_output.cstruct rtable *rt;
rt599net/ipv4/ip_output.crt=NULL;
rt608net/ipv4/ip_output.crt = ip_check_route(&sk->ip_route_cache, daddr,
rt611net/ipv4/ip_output.cif (rt == NULL) 
rt616net/ipv4/ip_output.csaddr = rt->rt_src;
rt618net/ipv4/ip_output.chh = rt->rt_hh;
rt623net/ipv4/ip_output.cdev=rt->rt_dev;
rt626net/ipv4/ip_output.cif (rt && !dev)
rt627net/ipv4/ip_output.cdev = rt->rt_dev;
rt632net/ipv4/ip_output.craddr = rt ? rt->rt_gateway : daddr;
rt672net/ipv4/ip_output.cprintk("ip_build_xmit: hh miss %08x via %08x\n", rt->rt_dst, rt->rt_gateway);
rt848net/ipv4/ip_output.cprintk("ip_build_xmit: hh miss %08x via %08x\n", rt->rt_dst, rt->rt_gateway);
rt264net/ipv4/ip_sockglue.cstruct rtable *rt;
rt286net/ipv4/ip_sockglue.cif((rt=ip_rt_route(mreq.imr_multiaddr.s_addr,0))!=NULL)
rt288net/ipv4/ip_sockglue.cdev=rt->rt_dev;
rt289net/ipv4/ip_sockglue.croute_src = rt->rt_src;
rt290net/ipv4/ip_sockglue.cATOMIC_DECR(&rt->rt_use);
rt291net/ipv4/ip_sockglue.cip_rt_put(rt);
rt320net/ipv4/ip_sockglue.cstruct rtable *rt;
rt340net/ipv4/ip_sockglue.cif((rt=ip_rt_route(mreq.imr_multiaddr.s_addr,0))!=NULL)
rt342net/ipv4/ip_sockglue.cdev=rt->rt_dev;
rt343net/ipv4/ip_sockglue.cATOMIC_DECR(&rt->rt_use);
rt344net/ipv4/ip_sockglue.croute_src = rt->rt_src;
rt345net/ipv4/ip_sockglue.cip_rt_put(rt);
rt291net/ipv4/rarp.cstruct rtable *rt;
rt331net/ipv4/rarp.crt = ip_rt_route(ip, 0);
rt332net/ipv4/rarp.cif (rt == NULL)
rt334net/ipv4/rarp.cdev = rt->rt_dev;
rt335net/ipv4/rarp.cip_rt_put(rt);
rt570net/ipv4/rarp.cstruct rarp_table *rt, *rt_next;
rt575net/ipv4/rarp.crt = rarp_tables;
rt579net/ipv4/rarp.cfor ( ; rt != NULL; rt = rt_next) {
rt580net/ipv4/rarp.crt_next = rt->next;
rt581net/ipv4/rarp.crarp_release_entry(rt);
rt953net/ipv4/route.cstatic void rt_free(struct rtable * rt)
rt959net/ipv4/route.cif (!rt->rt_refcnt)
rt961net/ipv4/route.cstruct hh_cache * hh = rt->rt_hh;
rt962net/ipv4/route.crt->rt_hh = NULL;
rt969net/ipv4/route.ckfree_s(rt, sizeof(struct rt_table));
rt972net/ipv4/route.crt->rt_next = rt_free_queue;
rt973net/ipv4/route.crt->rt_flags &= ~RTF_UP;
rt974net/ipv4/route.crt_free_queue = rt;
rt977net/ipv4/route.cprintk("rt_free: %08x\n", rt->rt_dst);
rt988net/ipv4/route.cstruct rtable *rt, **rtp;
rt992net/ipv4/route.cwhile ((rt = *rtp) != NULL)
rt994net/ipv4/route.cif  (!rt->rt_refcnt)
rt996net/ipv4/route.cstruct hh_cache * hh = rt->rt_hh;
rt998net/ipv4/route.c__u32 daddr = rt->rt_dst;
rt1000net/ipv4/route.c*rtp = rt->rt_next;
rt1001net/ipv4/route.crt->rt_hh = NULL;
rt1008net/ipv4/route.ckfree_s(rt, sizeof(struct rt_table));
rt1015net/ipv4/route.crtp = &rt->rt_next;
rt1115net/ipv4/route.cstruct rtable *rt;
rt1122net/ipv4/route.crt = (struct rtable *) kmalloc(sizeof(struct rtable), GFP_ATOMIC);
rt1123net/ipv4/route.cif (rt == NULL) 
rt1125net/ipv4/route.cmemset(rt, 0, sizeof(struct rtable));
rt1126net/ipv4/route.crt->rt_flags = RTF_DYNAMIC | RTF_MODIFIED | RTF_HOST | RTF_GATEWAY | RTF_UP;
rt1127net/ipv4/route.crt->rt_dst = dst;
rt1128net/ipv4/route.crt->rt_dev = dev;
rt1129net/ipv4/route.crt->rt_gateway = gw;
rt1130net/ipv4/route.crt->rt_src = dev->pa_addr;
rt1131net/ipv4/route.crt->rt_mtu = dev->mtu;
rt1134net/ipv4/route.crt->rt_mtu = 576;
rt1136net/ipv4/route.crt->rt_lastuse  = jiffies;
rt1137net/ipv4/route.crt->rt_refcnt  = 1;
rt1138net/ipv4/route.crt_cache_add(hash, rt);
rt1139net/ipv4/route.cip_rt_put(rt);
rt1329net/ipv4/route.cstruct rtable * rt;
rt1331net/ipv4/route.crt = ip_rt_route(dst, 0);
rt1332net/ipv4/route.cif (!rt)
rt1335net/ipv4/route.cif (rt->rt_gateway != src ||
rt1336net/ipv4/route.crt->rt_dev != dev ||
rt1340net/ipv4/route.cip_rt_put(rt);
rt1343net/ipv4/route.cip_rt_put(rt);
rt1580net/ipv4/route.cvoid ip_rt_put(struct rtable * rt)
rt1582net/ipv4/route.cif (rt)
rt1583net/ipv4/route.cATOMIC_DECR(&rt->rt_refcnt);
rt1761net/ipv4/route.cstruct rtentry rt;
rt1772net/ipv4/route.cmemcpy_fromfs(&rt, arg, sizeof(struct rtentry));
rt1773net/ipv4/route.creturn (cmd == SIOCDELRT) ? ip_rt_kill(&rt) : ip_rt_new(&rt);
rt551net/ipv4/tcp.cstruct rtable * rt;
rt558net/ipv4/tcp.cif ((rt = sk->ip_route_cache) != NULL)
rt559net/ipv4/tcp.cif (rt->rt_mtu > new_mtu)
rt560net/ipv4/tcp.crt->rt_mtu = new_mtu;
rt1914net/ipv4/tcp.cstruct rtable *rt;
rt1978net/ipv4/tcp.cif ((rt = sk->ip_route_cache) != NULL && !sk->saddr)
rt1979net/ipv4/tcp.csk->saddr = rt->rt_src;
rt1995net/ipv4/tcp.cif(rt!=NULL && (rt->rt_flags&RTF_WINDOW))
rt1996net/ipv4/tcp.csk->window_clamp=rt->rt_window;
rt2002net/ipv4/tcp.celse if (rt)
rt2003net/ipv4/tcp.csk->mtu = rt->rt_mtu - sizeof(struct iphdr) - sizeof(struct tcphdr);
rt2050net/ipv4/tcp.cif(rt&&rt->rt_flags&RTF_IRTT)
rt2051net/ipv4/tcp.csk->rto = rt->rt_irtt;
rt322net/ipv4/tcp_input.cstruct rtable *rt;
rt476net/ipv4/tcp_input.crt = ip_rt_route(newsk->opt && newsk->opt->srr ? newsk->opt->faddr : saddr, 0);
rt477net/ipv4/tcp_input.cnewsk->ip_route_cache = rt;
rt479net/ipv4/tcp_input.cif(rt!=NULL && (rt->rt_flags&RTF_WINDOW))
rt480net/ipv4/tcp_input.cnewsk->window_clamp = rt->rt_window;
rt486net/ipv4/tcp_input.celse if (rt)
rt487net/ipv4/tcp_input.cnewsk->mtu = rt->rt_mtu - sizeof(struct iphdr) - sizeof(struct tcphdr);
rt319net/ipv4/tcp_output.cstruct rtable *rt;
rt379net/ipv4/tcp_output.crt = ip_check_route(&sk->ip_route_cache, opt->srr?opt->faddr:iph->daddr, skb->localroute);
rt384net/ipv4/tcp_output.cif (rt && ntohs(iph->tot_len) > rt->rt_mtu)
rt389net/ipv4/tcp_output.cif (rt==NULL)  /* Deep poo */
rt399net/ipv4/tcp_output.cdev=rt->rt_dev;
rt400net/ipv4/tcp_output.cskb->raddr=rt->rt_gateway;
rt403net/ipv4/tcp_output.cif (rt->rt_hh)
rt405net/ipv4/tcp_output.cmemcpy(skb_push(skb,dev->hard_header_len),rt->rt_hh->hh_data,dev->hard_header_len);
rt406net/ipv4/tcp_output.cif (!rt->rt_hh->hh_uptodate)
rt410net/ipv4/tcp_output.cprintk("tcp_do_retransmit: hh miss %08x via %08x\n", iph->daddr, rt->rt_gateway);
rt301net/ipv4/udp.cconst unsigned char *from, int len, int rt,
rt327net/ipv4/udp.csin->sin_addr.s_addr, saddr, sk->opt, rt, IPPROTO_UDP, noblock);
rt330net/ipv4/udp.csin->sin_addr.s_addr, saddr, sk->opt, rt, IPPROTO_UDP, noblock);
rt548net/ipv4/udp.cstruct rtable *rt;
rt560net/ipv4/udp.crt=ip_rt_route((__u32)usin->sin_addr.s_addr, sk->localroute);
rt561net/ipv4/udp.cif (rt==NULL)
rt564net/ipv4/udp.csk->saddr = rt->rt_src;    /* Update source address */
rt566net/ipv4/udp.csk->rcv_saddr = rt->rt_src;
rt571net/ipv4/udp.csk->ip_route_cache = rt;
rt1089net/ipx/af_ipx.cipx_route  *rt;
rt1092net/ipx/af_ipx.crt = ipxrtr_lookup(network);
rt1093net/ipx/af_ipx.cif (rt==NULL) {
rt1094net/ipx/af_ipx.crt=(ipx_route *)kmalloc(sizeof(ipx_route),GFP_ATOMIC);
rt1095net/ipx/af_ipx.cif(rt==NULL)
rt1097net/ipx/af_ipx.crt->ir_next=ipx_routes;
rt1098net/ipx/af_ipx.cipx_routes=rt;
rt1103net/ipx/af_ipx.crt->ir_net = network;
rt1104net/ipx/af_ipx.crt->ir_intrfc = intrfc;
rt1106net/ipx/af_ipx.cmemset(rt->ir_router_node, '\0', IPX_NODE_LEN);
rt1107net/ipx/af_ipx.crt->ir_routed = 0;
rt1109net/ipx/af_ipx.cmemcpy(rt->ir_router_node, node, IPX_NODE_LEN);
rt1110net/ipx/af_ipx.crt->ir_routed=1;
rt1177net/ipx/af_ipx.cipx_route *rt = NULL;
rt1188net/ipx/af_ipx.crt = ipxrtr_lookup(usipx->sipx_network);
rt1189net/ipx/af_ipx.cif (rt==NULL) {
rt1192net/ipx/af_ipx.cintrfc = rt->ir_intrfc;
rt1247net/ipx/af_ipx.creturn ipxitf_send(intrfc, skb, (rt && rt->ir_routed) ? 
rt1248net/ipx/af_ipx.crt->ir_router_node : ipx->ipx_dest.node);
rt1277net/ipx/af_ipx.cstruct rtentry rt;  /* Use these to behave like 'other' stacks */
rt1280net/ipx/af_ipx.cerr=verify_area(VERIFY_READ,arg,sizeof(rt));
rt1284net/ipx/af_ipx.cmemcpy_fromfs(&rt,arg,sizeof(rt));
rt1286net/ipx/af_ipx.csg=(struct sockaddr_ipx *)&rt.rt_gateway;
rt1287net/ipx/af_ipx.cst=(struct sockaddr_ipx *)&rt.rt_dst;
rt1289net/ipx/af_ipx.cif(!(rt.rt_flags&RTF_GATEWAY))
rt1456net/ipx/af_ipx.cipx_route *rt;
rt1463net/ipx/af_ipx.cfor (rt = ipx_routes; rt != NULL; rt = rt->ir_next)
rt1465net/ipx/af_ipx.clen += sprintf (buffer+len,"%08lX   ", ntohl(rt->ir_net));
rt1466net/ipx/af_ipx.cif (rt->ir_routed) {
rt1468net/ipx/af_ipx.cntohl(rt->ir_intrfc->if_netnum), 
rt1469net/ipx/af_ipx.crt->ir_router_node[0], rt->ir_router_node[1], 
rt1470net/ipx/af_ipx.crt->ir_router_node[2], rt->ir_router_node[3], 
rt1471net/ipx/af_ipx.crt->ir_router_node[4], rt->ir_router_node[5]);