~ubuntu-branches/ubuntu/saucy/quagga/saucy

« back to all changes in this revision

Viewing changes to ospf6d/ospf6_abr.c

  • Committer: Bazaar Package Importer
  • Author(s): Christian Hammers
  • Date: 2008-10-09 22:56:38 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20081009225638-yv17mhejjsenrahx
Tags: 0.99.11-1
* New upstream release
  "Most regressions in 0.99 over 0.98 are now believed to be fixed. This
  release should be considered a release-candidate for a new stable series."
  + bgpd: Preliminary UI and Linux-IPv4 support for TCP-MD5 merged
  + zebra: ignore dead routes in RIB update
  + [ospfd] Default route needs to be refreshed after neighbour state change
  + [zebra:netlink] Set proto/scope on all route update messages
* Removed debian/patches/20_*bgp*md5*.dpatch due to upstream support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
472
472
  ospf6_lsa_originate_area (lsa, area);
473
473
}
474
474
 
475
 
void
 
475
static void
476
476
ospf6_abr_range_update (struct ospf6_route *range)
477
477
{
478
478
  u_int32_t cost = 0;
762
762
 
763
763
 
764
764
/* Display functions */
765
 
int
 
765
static int
766
766
ospf6_inter_area_prefix_lsa_show (struct vty *vty, struct ospf6_lsa *lsa)
767
767
{
768
768
  struct ospf6_inter_prefix_lsa *prefix_lsa;
787
787
  return 0;
788
788
}
789
789
 
790
 
int
 
790
static int
791
791
ospf6_inter_area_router_lsa_show (struct vty *vty, struct ospf6_lsa *lsa)
792
792
{
793
793
  struct ospf6_inter_router_lsa *router_lsa;
841
841
}
842
842
 
843
843
void
844
 
install_element_ospf6_debug_abr ()
 
844
install_element_ospf6_debug_abr (void)
845
845
{
846
846
  install_element (ENABLE_NODE, &debug_ospf6_abr_cmd);
847
847
  install_element (ENABLE_NODE, &no_debug_ospf6_abr_cmd);
864
864
};
865
865
 
866
866
void
867
 
ospf6_abr_init ()
 
867
ospf6_abr_init (void)
868
868
{
869
869
  ospf6_install_lsa_handler (&inter_prefix_handler);
870
870
  ospf6_install_lsa_handler (&inter_router_handler);