Symbol: rt_metric
sbin/routed/if.c
1258
|| rt->rt_metric > ifp->int_metric) {
sbin/routed/if.c
1316
|| rt->rt_metric > ifp->int_metric)) {
sbin/routed/input.c
334
j = (rt->rt_metric
sbin/routed/input.c
406
j = rt->rt_metric+1;
sbin/routed/output.c
533
metric = RT->rt_metric;
sbin/routed/output.c
781
|| rt->rt_metric+ws.metric >= def_metric) {
sbin/routed/output.c
786
def_metric = rt->rt_metric+ws.metric;
sbin/routed/table.c
1479
metric = RT->rt_metric;
sbin/routed/table.c
1778
if (rt->rt_metric != new->rts_metric) {
sbin/routed/trace.c
790
if (rt->rt_metric == new->rts_metric
sbin/routed/trace.c
811
-(new->rts_metric == rt->rt_metric),
sbin/routed/trace.c
853
&& RT->rt_poison_metric < RT->rt_metric)
usr.sbin/mrouted/prune.c
2015
rt->rt_metric);
usr.sbin/mrouted/prune.c
2189
if (rt->rt_metric >= UNREACHABLE) {
usr.sbin/mrouted/prune.c
2204
if (((u_int)(rcount + 1) == no) || (rt == NULL) || (rt->rt_metric == 1)) {
usr.sbin/mrouted/route.c
1019
*p++ = (r->rt_parent == vifi && r->rt_metric != UNREACHABLE) ?
usr.sbin/mrouted/route.c
1020
(char)(r->rt_metric + UNREACHABLE) : /* "poisoned reverse" */
usr.sbin/mrouted/route.c
1021
(char)(r->rt_metric);
usr.sbin/mrouted/route.c
1108
fprintf(fp, (r->rt_metric == UNREACHABLE) ? " NR " : "%4u ",
usr.sbin/mrouted/route.c
1109
r->rt_metric);
usr.sbin/mrouted/route.c
121
if (r->rt_metric != UNREACHABLE &&
usr.sbin/mrouted/route.c
152
if (r->rt_metric != UNREACHABLE) {
usr.sbin/mrouted/route.c
156
r->rt_metric = UNREACHABLE;
usr.sbin/mrouted/route.c
188
if (r->rt_metric != UNREACHABLE) {
usr.sbin/mrouted/route.c
396
rtp->rt_metric = UNREACHABLE; /* temporary; updated below */
usr.sbin/mrouted/route.c
403
if (r->rt_metric == UNREACHABLE) {
usr.sbin/mrouted/route.c
417
r->rt_metric = adj_metric;
usr.sbin/mrouted/route.c
432
if (adj_metric == r->rt_metric)
usr.sbin/mrouted/route.c
439
else if (adj_metric < r->rt_metric) {
usr.sbin/mrouted/route.c
444
r->rt_metric = adj_metric;
usr.sbin/mrouted/route.c
450
(adj_metric < r->rt_metric ||
usr.sbin/mrouted/route.c
451
(adj_metric == r->rt_metric &&
usr.sbin/mrouted/route.c
469
if (r->rt_parent != vifi || adj_metric < r->rt_metric) {
usr.sbin/mrouted/route.c
480
r->rt_metric = adj_metric;
usr.sbin/mrouted/route.c
493
if (metric < r->rt_metric ||
usr.sbin/mrouted/route.c
494
(metric == r->rt_metric &&
usr.sbin/mrouted/route.c
542
(metric > r->rt_metric ||
usr.sbin/mrouted/route.c
543
(metric == r->rt_metric &&
usr.sbin/mrouted/route.c
625
else if (r->rt_metric != UNREACHABLE) {
usr.sbin/mrouted/route.c
637
r->rt_metric = UNREACHABLE;
usr.sbin/mrouted/route.c
660
r->rt_metric = UNREACHABLE;
usr.sbin/mrouted/route.c
899
*p++ = (r->rt_parent == vifi && r->rt_metric != UNREACHABLE) ?
usr.sbin/mrouted/route.c
900
(char)(r->rt_metric + UNREACHABLE) : /* "poisoned reverse" */
usr.sbin/mrouted/route.c
901
(char)(r->rt_metric);
usr.sbin/mrouted/route.c
989
&& (r->rt_metric > 1)) {
usr.sbin/mrouted/route.h
32
u_char rt_metric; /* cost of route back to origin */
usr.sbin/mrouted/snmp.c
965
long_return = rt->rt_metric;