summaryrefslogtreecommitdiffstats
path: root/ospfd/ospf_route.c
diff options
context:
space:
mode:
authorhasso <hasso>2004-06-20 21:00:27 +0000
committerhasso <hasso>2004-06-20 21:00:27 +0000
commitd5bafb5817f4fbc5fc07360b771d4aeaeab2b3ad (patch)
tree54b1607077aaf7bfd5d4be35d9aa83b92a1969af /ospfd/ospf_route.c
parentb8dd3c3f2e49a515c3a9ded5a6ddd856e4f2dff0 (diff)
downloadquagga-d5bafb5817f4fbc5fc07360b771d4aeaeab2b3ad.tar.bz2
quagga-d5bafb5817f4fbc5fc07360b771d4aeaeab2b3ad.tar.xz
Remove ifdef's HAVE_NSSA. NSSA support is stable enough.
Diffstat (limited to 'ospfd/ospf_route.c')
-rw-r--r--ospfd/ospf_route.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/ospfd/ospf_route.c b/ospfd/ospf_route.c
index d56b5658..a8ee232f 100644
--- a/ospfd/ospf_route.c
+++ b/ospfd/ospf_route.c
@@ -319,9 +319,7 @@ ospf_intra_route_add (struct route_table *rt, struct vertex *v,
or->id = v->id;
or->u.std.area_id = area->area_id;
-#ifdef HAVE_NSSA
or->u.std.external_routing= area->external_routing;
-#endif /* HAVE_NSSA */
or->path_type = OSPF_PATH_INTRA_AREA;
or->cost = v->distance;
@@ -376,9 +374,7 @@ ospf_intra_add_router (struct route_table *rt, struct vertex *v,
or->id = v->id;
or->u.std.area_id = area->area_id;
-#ifdef HAVE_NSSA
or->u.std.external_routing = area->external_routing;
-#endif /* HAVE_NSSA */
or->path_type = OSPF_PATH_INTRA_AREA;
or->cost = v->distance;
or->type = OSPF_DESTINATION_ROUTER;
@@ -471,9 +467,7 @@ ospf_intra_add_transit (struct route_table *rt, struct vertex *v,
or->id = v->id;
or->u.std.area_id = area->area_id;
-#ifdef HAVE_NSSA
or->u.std.external_routing = area->external_routing;
-#endif /* HAVE_NSSA */
or->path_type = OSPF_PATH_INTRA_AREA;
or->cost = v->distance;
or->type = OSPF_DESTINATION_NETWORK;
@@ -603,9 +597,7 @@ ospf_intra_add_stub (struct route_table *rt, struct router_lsa_link *link,
or->id = v->id;
or->u.std.area_id = area->area_id;
-#ifdef HAVE_NSSA
or->u.std.external_routing = area->external_routing;
-#endif /* HAVE_NSSA */
or->path_type = OSPF_PATH_INTRA_AREA;
or->cost = cost;
or->type = OSPF_DESTINATION_NETWORK;
@@ -1029,9 +1021,7 @@ ospf_add_discard_route (struct route_table *rt, struct ospf_area *area,
new_or->id.s_addr = 0;
new_or->cost = 0;
new_or->u.std.area_id = area->area_id;
-#ifdef HAVE_NSSA
new_or->u.std.external_routing = area->external_routing;
-#endif /* HAVE_NSSA */
new_or->path_type = OSPF_PATH_INTER_AREA;
rn->info = new_or;