Searched refs:rt_expire (Results 1 - 6 of 6) sorted by relevance

/xnu-2422.115.4/bsd/netinet/
H A Din_arp.c443 VERIFY(rt->rt_expire == 0 || rt->rt_rmx.rmx_expire != 0);
444 VERIFY(rt->rt_expire != 0 || rt->rt_rmx.rmx_expire == 0);
446 if (arp_llreach_base != 0 && rt->rt_expire != 0 &&
528 VERIFY(rt->rt_expire == 0 || rt->rt_rmx.rmx_expire != 0);
529 VERIFY(rt->rt_expire != 0 || rt->rt_rmx.rmx_expire == 0);
532 if (rt->rt_expire == 0 || (rt->rt_flags & RTF_STATIC)) {
535 if (rt->rt_expire == 0) {
542 if (!ap->draining && rt->rt_expire > net_uptime()) {
1093 VERIFY(route->rt_expire == 0 || route->rt_rmx.rmx_expire != 0);
1094 VERIFY(route->rt_expire !
[all...]
H A Din_rmx.c435 rt->rt_flags, RTF_BITS, rt->rt_expire - timenow);
477 VERIFY(rt->rt_expire == 0 || rt->rt_rmx.rmx_expire != 0);
478 VERIFY(rt->rt_expire != 0 || rt->rt_rmx.rmx_expire == 0);
479 if (ap->draining || rt->rt_expire <= timenow) {
522 uint64_t expire = (rt->rt_expire - timenow);
534 (rt->rt_expire - timenow), expire);
537 ap->nextstop = lmin(ap->nextstop, rt->rt_expire);
/xnu-2422.115.4/bsd/netinet6/
H A Din6_rmx.c522 rt->rt_flags, RTF_BITS, rt->rt_expire - timenow);
566 VERIFY(rt->rt_expire == 0 || rt->rt_rmx.rmx_expire != 0);
567 VERIFY(rt->rt_expire != 0 || rt->rt_rmx.rmx_expire == 0);
568 if (ap->draining || rt->rt_expire <= timenow ||
613 uint64_t expire = (rt->rt_expire - timenow);
625 (rt->rt_expire - timenow), expire);
628 ap->nextstop = lmin(ap->nextstop, rt->rt_expire);
/xnu-2422.115.4/bsd/net/
H A Drtsock.c698 /* set both rt_expire and rmx_expire */
699 rt->rt_expire = expiry;
741 VERIFY(out->rt_expire == 0 || out->rt_rmx.rmx_expire != 0);
742 VERIFY(out->rt_expire != 0 || out->rt_rmx.rmx_expire == 0);
750 VERIFY(in->rt_expire == 0 || in->rt_rmx.rmx_expire != 0);
751 VERIFY(in->rt_expire != 0 || in->rt_rmx.rmx_expire == 0);
755 if (in->rt_expire != 0) {
764 in->rt_expire - in->base_uptime;
H A Droute.c2096 VERIFY((*ret_nrt)->rt_expire == 0 ||
2098 VERIFY((*ret_nrt)->rt_expire != 0 ||
2101 rt_setexpire(rt, (*ret_nrt)->rt_expire);
3755 VERIFY(rt->rt_expire == 0 || rt->rt_rmx.rmx_expire != 0);
3756 VERIFY(rt->rt_expire != 0 || rt->rt_rmx.rmx_expire == 0);
3758 if (rt->rt_expire == 0 || timenow < rt->rt_expire) {
H A Droute.h209 uint64_t rt_expire; /* expiration time in uptime seconds */ member in struct:rtentry
498 * reporting rt_expire, ln_expire, etc. values to user space.

Completed in 50 milliseconds