Searched refs:ro6 (Results 1 - 7 of 7) sorted by relevance

/darwin-on-arm/xnu/bsd/netinet/
H A Dtcp_subr.c589 struct route_in6 *ro6 = 0; local
610 ro6 = &tp->t_inpcb->in6p_route;
617 ro6 = &sro6;
618 bzero(ro6, sizeof *ro6);
730 ro6 && ro6->ro_rt ?
731 ro6->ro_rt->rt_ifp :
776 (void) ip6_output(m, NULL, ro6, IPV6_OUTARGS, NULL,
778 if (ro6
2204 struct route_in6 *ro6; local
[all...]
H A Dtcp_output.c1996 struct route_in6 ro6; local
2035 in6p_route_copyout(inp, &ro6);
2112 inp->in6p_outputopts, &ro6, flags, NULL, NULL,
2170 if (ro6.ro_rt != NULL && (outif = ro6.ro_rt->rt_ifp) !=
2187 in6p_route_copyin(inp, &ro6);
H A Dip_dummynet.c1128 struct route_in6 ro6; local
1130 ro6 = pkt->dn_ro6;
1132 ip6_output(m, NULL, &ro6, IPV6_FORWARDING, NULL, NULL, NULL);
1134 if (ro6.ro_rt)
1135 rtfree(ro6.ro_rt);
/darwin-on-arm/xnu/bsd/netinet6/
H A Dnd6_prproxy.c520 nd6_prproxy_isours(struct mbuf *m, struct ip6_hdr *ip6, struct route_in6 *ro6, argument
531 VERIFY(ro6 == NULL);
538 if (ro6 == NULL)
541 if ((rt = ro6->ro_rt) != NULL)
549 rt = ro6->ro_rt = NULL;
554 &ro6->ro_dst.sin6_addr));
556 rtalloc_scoped_ign((struct route *)ro6, RTF_PRCLONING, ifscope);
557 if ((rt = ro6->ro_rt) == NULL)
H A Dipsec.c3467 struct route *ro6; local
3729 ro6 = &sav->sah->sa_route;
3730 dst6 = (struct sockaddr_in6 *)(void *)&ro6->ro_dst;
3731 if (ro6->ro_rt) {
3732 RT_LOCK(ro6->ro_rt);
3734 if (ro6->ro_rt != NULL &&
3735 (ro6->ro_rt->generation_id != route_generation ||
3736 !(ro6->ro_rt->rt_flags & RTF_UP) ||
3738 RT_UNLOCK(ro6->ro_rt);
3739 rtfree(ro6
[all...]
H A Din6_mcast.c1867 struct route_in6 ro6; local
1880 memset(&ro6, 0, sizeof(struct route_in6));
1881 memcpy(&ro6.ro_dst, gsin6, sizeof(struct sockaddr_in6));
1882 rtalloc_scoped_ign((struct route *)&ro6, 0, ifscope);
1883 if (ro6.ro_rt != NULL) {
1884 ifp = ro6.ro_rt->rt_ifp;
1886 rtfree(ro6.ro_rt);
/darwin-on-arm/xnu/bsd/net/
H A Dpf.c2512 struct route_in6 ro6; local
2521 bzero(&ro6, sizeof (ro6));
2522 ip6_output(m, NULL, &ro6, 0, NULL, NULL, NULL);
2523 if (ro6.ro_rt != NULL)
2524 rtfree(ro6.ro_rt);
3837 struct route_in6 ro6; local
3859 bzero(&ro6, sizeof (ro6));
3860 dst6 = (struct sockaddr_in6 *)(void *)&ro6
[all...]

Completed in 40 milliseconds