Home | History | Annotate | Download | only in dhcpcd-6.8.2

Lines Matching refs:ort

1832 nc_route(struct rt6 *ort, struct rt6 *nrt)
1841 desc_route(ort == NULL ? "adding" : "changing", nrt);
1843 if (ort == NULL) {
1844 ort = ipv6_findrt(nrt->iface->ctx, nrt, 0);
1845 if (ort &&
1846 ((ort->flags & RTF_REJECT && nrt->flags & RTF_REJECT) ||
1847 (ort->iface == nrt->iface &&
1849 ort->metric == nrt->metric &&
1851 IN6_ARE_ADDR_EQUAL(&ort->gate, &nrt->gate))))
1859 if (ort && if_route6(RTM_DELETE, ort) == -1 &&
1867 if (errno != EEXIST || ort == NULL)
1873 if (ort && if_route6(RTM_DELETE, ort) == -1 && errno != ESRCH)