diff options
author | David Lamparter <equinox@diac24.net> | 2010-02-04 02:03:08 +0100 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2010-02-04 02:03:08 +0100 |
commit | eb12558a9583b841431a45560195a0cd434e54ce (patch) | |
tree | b3ec3f8eed65a75d3bde15e3e372563af2245eaa | |
parent | 4f559f6cd3a0377391a32a307729479e7081cb16 (diff) | |
download | quagga-eb12558a9583b841431a45560195a0cd434e54ce.tar.bz2 quagga-eb12558a9583b841431a45560195a0cd434e54ce.tar.xz |
ospfd: add missing ospf_interface_[un]set prototypes
-rw-r--r-- | ospfd/ospfd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ospfd/ospfd.h b/ospfd/ospfd.h index b24b3ced..ae8f8e3e 100644 --- a/ospfd/ospfd.h +++ b/ospfd/ospfd.h @@ -607,6 +607,9 @@ extern struct ospf_area *ospf_area_lookup_by_area_id (struct ospf *, extern void ospf_area_add_if (struct ospf_area *, struct ospf_interface *); extern void ospf_area_del_if (struct ospf_area *, struct ospf_interface *); +extern int ospf_interface_set (struct interface *ifp); +extern int ospf_interface_unset (struct interface *ifp); + extern void ospf_route_map_init (void); extern void ospf_snmp_init (void); |