• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/ospf6d/

Lines Matching refs:ospf6

59 struct ospf6 *ospf6;
62 ospf6_top_foreach_area (struct ospf6 *o6, void *arg, int val,
76 ospf6_top_foreach_interface (struct ospf6 *o6, void *arg, int val,
90 ospf6_top_foreach_neighbor (struct ospf6 *o6, void *arg, int val,
107 struct ospf6 *o6 = (struct ospf6 *) THREAD_ARG (t);
122 ospf6_top_schedule_maxage_remover (void *arg, int val, struct ospf6 *o6)
141 inet_ntop (AF_INET, &ospf6->router_id, id_string, sizeof (id_string));
143 ospf6->process_id, id_string, VTY_NEWLINE);
147 ospf6_timeval_sub (&now, &ospf6->starttime, &running);
155 ospf6_redistribute_show_config (vty, ospf6);
159 ospf6->lsdb->count, VTY_NEWLINE);
161 ospf6->stat_route_calculation_execed, VTY_NEWLINE);
165 ospf6_route_statistics_show (vty, ospf6->route_table);
170 listcount (ospf6->area_list), VTY_NEWLINE);
171 for (n = listhead (ospf6->area_list); n; nextnode (n))
179 ospf6_statistics_show (struct vty *vty, struct ospf6 *o6)
205 static struct ospf6 *
208 struct ospf6 *new;
209 new = XMALLOC (MTYPE_OSPF6_TOP, sizeof (struct ospf6));
211 memset (new, 0, sizeof (struct ospf6));
216 ospf6_free (struct ospf6 *ospf6)
218 XFREE (MTYPE_OSPF6_TOP, ospf6);
237 struct ospf6 *
240 struct ospf6 *o6;
289 ospf6_delete (struct ospf6 *ospf6)
291 ospf6_route_remove_all (ospf6->route_table);
292 ospf6_free (ospf6);
295 struct ospf6 *
298 if (ospf6)
299 return ospf6;
301 ospf6 = ospf6_create (0);
302 return ospf6;
308 if (!ospf6)
311 ospf6_delete (ospf6);
312 ospf6 = NULL;
316 ospf6_is_asbr (struct ospf6 *o6)
330 "show ipv6 ospf6 route",
338 return ospf6_route_table_show (vty, argc, argv, ospf6->route_table);
343 "show ipv6 ospf6 route (X::X|detail)",
353 "show ipv6 ospf6 topology",
361 return ospf6_route_table_show (vty, argc, argv, ospf6->topology_table);
366 "show ipv6 ospf6 topology (A.B.C.D|<0-4294967295>|detail)",
378 "show ipv6 ospf6 topology (A.B.C.D|<0-4294967295>) (A.B.C.D|<0-4294967295>)",