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

Lines Matching defs:o6

62 ospf6_top_foreach_area (struct ospf6 *o6, void *arg, int val,
68 for (node = listhead (o6->area_list); node; nextnode (node))
76 ospf6_top_foreach_interface (struct ospf6 *o6, void *arg, int val,
82 for (node = listhead (o6->area_list); node; nextnode (node))
90 ospf6_top_foreach_neighbor (struct ospf6 *o6, void *arg, int val,
96 for (node = listhead (o6->area_list); node; nextnode (node))
107 struct ospf6 *o6 = (struct ospf6 *) THREAD_ARG (t);
109 o6->maxage_remover = (struct thread *) NULL;
112 o6->foreach_nei (o6, &count, NBS_EXCHANGE, ospf6_count_state);
113 o6->foreach_nei (o6, &count, NBS_LOADING, ospf6_count_state);
117 ospf6_lsdb_remove_maxage (o6->lsdb);
122 ospf6_top_schedule_maxage_remover (void *arg, int val, struct ospf6 *o6)
124 if (o6->maxage_remover != NULL)
127 o6->maxage_remover =
128 thread_add_event (master, ospf6_top_maxage_remover, o6, 0);
179 ospf6_statistics_show (struct vty *vty, struct ospf6 *o6)
187 ospf6_timeval_sub (&now, &o6->starttime, &running);
191 o6->process_id, VTY_NEWLINE);
195 ospf6_route_statistics_show (vty, o6->route_table);
198 for (node = listhead (o6->area_list); node; nextnode (node))
240 struct ospf6 *o6;
243 o6 = ospf6_new ();
246 gettimeofday (&o6->starttime, (struct timezone *)NULL);
247 o6->process_id = process_id;
248 o6->version = OSPF6_VERSION;
249 o6->area_list = list_new ();
251 o6->lsdb = ospf6_lsdb_create ();
254 ospf6_redistribute_init (o6);
256 o6->foreach_area = ospf6_top_foreach_area;
257 o6->foreach_if = ospf6_top_foreach_interface;
258 o6->foreach_nei = ospf6_top_foreach_neighbor;
261 o6->topology_table = ospf6_route_table_create (namebuf);
265 o6->topology_table);
268 o6->external_table = ospf6_route_table_create (namebuf);
272 o6->external_table);
275 o6->route_table = ospf6_route_table_create (namebuf);
279 o6->route_table);
283 o6->route_table);
285 return o6;
316 ospf6_is_asbr (struct ospf6 *o6)