Searched refs:rt_gwroute (Results 1 - 5 of 5) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/net/
H A Droute.c1217 if (rt->rt_gwroute) {
1218 rt = rt->rt_gwroute;
1220 (rt = (struct rtentry *)rn)->rt_gwroute = 0;
1322 * also add the rt_gwroute if possible.
1390 if (rt->rt_gwroute)
1391 rtfree_locked(rt->rt_gwroute);
1595 * to the next-hop gateway and store it in rt_gwroute.
1634 if (rt->rt_gwroute != NULL)
1635 rtfree_locked(rt->rt_gwroute);
1636 rt->rt_gwroute
[all...]
H A Dif_fddisubr.c153 if (rt->rt_gwroute == 0)
155 if (((rt = rt->rt_gwroute)->rt_flags & RTF_UP) == 0) {
157 lookup: rt->rt_gwroute = RTALLOC1(rt->rt_gateway, 1);
158 if ((rt = rt->rt_gwroute) == 0)
H A Droute.h149 struct rtentry *rt_gwroute; /* implied entry for gatewayed routes */ member in struct:rtentry
/macosx-10.5.8/xnu-1228.15.4/bsd/netinet/
H A Din_arp.c475 if (route->rt_gwroute == 0 ||
476 (route->rt_gwroute->rt_flags & RTF_UP) == 0) {
477 if (route->rt_gwroute != 0)
478 rtfree_locked(route->rt_gwroute);
480 route->rt_gwroute = rtalloc1_scoped_locked(
483 if (route->rt_gwroute == 0) {
489 route = route->rt_gwroute;
/macosx-10.5.8/xnu-1228.15.4/bsd/netinet6/
H A Dnd6.c2017 if (rt->rt_gwroute == 0)
2019 if (((rt = rt->rt_gwroute)->rt_flags & RTF_UP) == 0) {
2021 lookup: rt->rt_gwroute = rtalloc1_locked(rt->rt_gateway, 1, 0UL);
2022 if ((rt = rt->rt_gwroute) == 0) {

Completed in 37 milliseconds