diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2009-06-10 23:45:08 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2009-06-10 23:45:08 +0200 |
commit | 3d15dcdb1cc91c694aa9319b86bb37510d7ed12b (patch) | |
tree | 96c5dda68741dd75b4b5d0037e782d5d89726d93 /proto/ospf/ospf.h | |
parent | b99d378698641b9821e4b708a90761aeb9bf6cc4 (diff) | |
download | bird-3d15dcdb1cc91c694aa9319b86bb37510d7ed12b.tar bird-3d15dcdb1cc91c694aa9319b86bb37510d7ed12b.zip |
Changes OSPF to generate stub networks for non-primary addresses.
Also does some reorganization in RT LSA announcement.
Diffstat (limited to 'proto/ospf/ospf.h')
-rw-r--r-- | proto/ospf/ospf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/ospf/ospf.h b/proto/ospf/ospf.h index fb78af4..71f99d3 100644 --- a/proto/ospf/ospf.h +++ b/proto/ospf/ospf.h @@ -550,6 +550,8 @@ struct proto_ospf int rfc1583; /* RFC1583 compatibility */ int ebit; /* Did I originate any ext lsa? */ struct ospf_area *backbone; /* If exists */ + void *lsab; /* LSA buffer used when originating router LSAs */ + int lsab_size, lsab_used; }; struct ospf_iface_patt @@ -585,8 +587,6 @@ int ospf_import_control(struct proto *p, rte **new, ea_list **attrs, struct linpool *pool); struct ea_list *ospf_make_tmp_attrs(struct rte *rt, struct linpool *pool); void ospf_store_tmp_attrs(struct rte *rt, struct ea_list *attrs); -void ospf_rt_notify(struct proto *p, net *n, rte *new, rte *old, - ea_list * attrs); void schedule_rt_lsa(struct ospf_area *oa); void schedule_rtcalc(struct proto_ospf *po); void schedule_net_lsa(struct ospf_iface *ifa); |