diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2011-09-03 21:31:26 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2011-09-03 21:31:26 +0200 |
commit | 2918e61046388821c3d4411c602dc5b28ad59329 (patch) | |
tree | 3f950c7e2455c6809970bac3547795456893e704 /proto/ospf/ospf.h | |
parent | b1b19433602f2a2ff58cfe2c1858ff883eee7b20 (diff) |
Fixes for OSPF NSSA handling.
Diffstat (limited to 'proto/ospf/ospf.h')
-rw-r--r-- | proto/ospf/ospf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/proto/ospf/ospf.h b/proto/ospf/ospf.h index 2a7d3c1f..2e99b0ff 100644 --- a/proto/ospf/ospf.h +++ b/proto/ospf/ospf.h @@ -126,10 +126,11 @@ struct ospf_area_config { node n; u32 areaid; - u32 stub_cost; /* Cost of default route for stub areas */ + u32 default_cost; /* Cost of default route for stub areas */ u8 type; /* Area type (standard, stub, NSSA), represented by option flags (OPT_E, OPT_N) */ u8 summary; /* Import summaries to this stub/NSSA area, valid for ABR */ + u8 default_nssa; /* Generate default NSSA route for NSSA+summary area */ u8 translator; /* Translator role, for NSSA ABR */ u32 transint; /* Translator stability interval */ list patt_list; |