diff options
| author | Renato Westphal <renato@opensourcerouting.org> | 2021-08-19 12:14:47 -0300 | 
|---|---|---|
| committer | Renato Westphal <renato@opensourcerouting.org> | 2021-08-24 11:53:36 -0300 | 
| commit | 0c293b92eeefeb37203fb0e8565c77a77fc189b0 (patch) | |
| tree | fb9c93676e5e961914aa456d1031cbc9780539cf /ospf6d/ospf6_area.h | |
| parent | 9142948e39f331231d05e68306c94a51db36c820 (diff) | |
ospf6d: do not allow an area to be stub and NSSA at the same time
That should not be allowed under any circumstance.
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'ospf6d/ospf6_area.h')
| -rw-r--r-- | ospf6d/ospf6_area.h | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/ospf6d/ospf6_area.h b/ospf6d/ospf6_area.h index dd4d019015..b2a275d745 100644 --- a/ospf6d/ospf6_area.h +++ b/ospf6d/ospf6_area.h @@ -154,6 +154,7 @@ extern void ospf6_area_delete(struct ospf6_area *);  extern struct ospf6_area *ospf6_area_lookup(uint32_t, struct ospf6 *);  extern struct ospf6_area *ospf6_area_lookup_by_area_id(uint32_t area_id); +extern void ospf6_area_stub_unset(struct ospf6 *ospf6, struct ospf6_area *area);  extern void ospf6_area_enable(struct ospf6_area *);  extern void ospf6_area_disable(struct ospf6_area *);  | 
