summaryrefslogtreecommitdiffstats
path: root/proto/ospf/config.Y
diff options
context:
space:
mode:
authorOndrej Filip <feela@network.cz>2001-08-12 02:04:42 +0200
committerOndrej Filip <feela@network.cz>2001-08-12 02:04:42 +0200
commitc926eee72471d8127ff833548b0ce1f8cb6de276 (patch)
tree5e666a8ff7694298330db15e8ac97309f76cf9ab /proto/ospf/config.Y
parentb2bdb4065667f466575b831f4a3166bd309d9d14 (diff)
downloadbird-c926eee72471d8127ff833548b0ce1f8cb6de276.tar
bird-c926eee72471d8127ff833548b0ce1f8cb6de276.zip
Area networks added into configuration.
Diffstat (limited to 'proto/ospf/config.Y')
-rw-r--r--proto/ospf/config.Y35
1 files changed, 33 insertions, 2 deletions
diff --git a/proto/ospf/config.Y b/proto/ospf/config.Y
index 140cbb4..9431f24 100644
--- a/proto/ospf/config.Y
+++ b/proto/ospf/config.Y
@@ -17,14 +17,15 @@ static struct ospf_area_config *this_area;
static struct iface_patt *this_ipatt;
#define OSPF_PATT ((struct ospf_iface_patt *) this_ipatt)
static struct nbma_node *this_nbma;
+static struct area_net *this_pref;
CF_DECLS
CF_KEYWORDS(OSPF, AREA, OSPF_METRIC1, OSPF_METRIC2, OSPF_TAG)
CF_KEYWORDS(NEIGHBORS, RFC1583COMPAT, STUB, TICK, COST, RETRANSMIT)
CF_KEYWORDS(HELLO, TRANSMIT, PRIORITY, DEAD, NONBROADCAST, POINTOPOINT, TYPE)
-CF_KEYWORDS(NEIGHBORS, NONE, SIMPLE, AUTHENTICATION, PASSWORD, STRICT)
-CF_KEYWORDS(ELIGIBLE, POLL)
+CF_KEYWORDS(NONE, SIMPLE, AUTHENTICATION, PASSWORD, STRICT)
+CF_KEYWORDS(ELIGIBLE, POLL, NETWORKS, HIDDEN)
%type <t> opttext
@@ -58,6 +59,7 @@ ospf_area_start: AREA idval '{' {
this_area->tick = DISPTICK;
this_area->stub = 0;
init_list(&this_area->patt_list);
+ init_list(&this_area->net_list);
}
;
@@ -72,6 +74,7 @@ ospf_area_opts:
ospf_area_item:
STUB COST expr { this_area->stub = $3 ; if($3<=0) cf_error("Stub cost must be greater than zero"); }
| TICK expr { this_area->tick = $2 ; if($2<=0) cf_error("Tick must be greater than zero"); }
+ | NETWORKS '{' pref_list '}'
| INTERFACE ospf_iface_list
;
@@ -96,6 +99,34 @@ ospf_iface_item:
|
;
+pref_list:
+ /* empty */
+ | pref_list pref_item
+ ;
+
+pref_item:
+ pref_el;
+ | pref_hid;
+
+pref_el: prefix ';'
+ {
+ this_pref = cfg_allocz(sizeof(struct area_net));
+ add_tail(&this_area->net_list, NODE this_pref);
+ this_pref->net = $1.addr;
+ this_pref->mlen = $1.len;
+ }
+;
+
+pref_hid: prefix HIDDEN ';'
+ {
+ this_pref = cfg_allocz(sizeof(struct area_net));
+ add_tail(&this_area->net_list, NODE this_pref);
+ this_pref->net = $1.addr;
+ this_pref->mlen = $1.len;
+ this_pref->hidden = 1;
+ }
+;
+
ipa_list:
/* empty */
| ipa_list ipa_item