• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/zebra/ospfd/

Lines Matching refs:to

18  * along with GNU Zebra; see the file COPYING.  If not, write to the Free
207 /* Install routes to table. */
363 interface is set to the IP address of the outgoing interface
365 address is set to Router X's interface address (contained in
366 Router X's router-LSA) that points back to the root of the
368 points back to Router X's parent vertex on the shortest-path tree
369 (similar to the calculation in Section 16.1.1). */
381 /* Note that we keep all routes to ABRs and ASBRs, not only the best */
419 an intra-area route to the destination installed in the routing
420 table), multiple vertices have mapped to the same IP network.
481 zlog_info ("ospf_intra_add_stub(): processing route to %s/%d",
485 equal to the distance from the root to the router vertex
507 "another route to the same prefix found");
509 /* Compare this distance to the current best cost to the stub
512 larger, go on to examine the next stub network link in the
524 calculation is shown in Section 16.1.1; input to this
528 of next hops to the routing table entry's list of next hops.
532 Origin to V's router-LSA. */
548 routing table entry's cost to D, and by setting the entry's
549 list of next hops to the newly calculated set. Set the
550 routing table entry's Link State Origin to V's router-LSA.
551 Then go on to examine the next stub network link. */
777 ospf_route_copy_nexthops_from_vertex (struct ospf_route *to,
784 if (to->path == NULL)
785 to->path = list_new ();
793 if (! ospf_path_exist (to->path, nexthop->router, nexthop->oi))
798 listnode_add (to->path, path);
822 ospf_route_copy_nexthops (struct ospf_route *to, list from)
826 if (to->path == NULL)
827 to->path = list_new ();
831 if (!ospf_path_lookup (to->path, node->data))
832 listnode_add (to->path, ospf_path_dup (node->data));
836 ospf_route_subst_nexthops (struct ospf_route *to, list from)
841 for (node = listhead (to->path); node; nextnode (node))
848 list_delete_all_node (to->path);
849 ospf_route_copy_nexthops (to, from);
903 zlog_info ("Pruning route to %s/%d",
941 zlog_info ("Pruning route to rtr %s",
980 if (rn->info) /* If the route to the same destination is found */