Home | History | Annotate | Download | only in mrouted

Lines Matching defs:rtp

36 static struct rtentry *rtp;		/* pointer to a route entry         */
237 rtp = RT_ADDR;
242 * Starting at the route entry following the one to which 'rtp' points,
244 * match is found, return TRUE and leave 'rtp' pointing at the found entry.
245 * If no match is found, return FALSE and leave 'rtp' pointing to the route
255 r = rtp->rt_next;
258 rtp = r;
264 rtp = r;
274 * the routing table. The shared variable 'rtp' is assumed to point to the
304 r->rt_next = rtp->rt_next;
305 rtp->rt_next = r;
306 r->rt_prev = rtp;
311 rtp = r;
384 * OK, create the new routing entry. 'rtp' will be left pointing
394 steal_sources(rtp);
396 rtp->rt_metric = UNREACHABLE; /* temporary; updated below */
402 r = rtp;