Multiple items in area {} :-)
This commit is contained in:
parent
89d6782dd1
commit
a789d814dd
1 changed files with 8 additions and 2 deletions
|
@ -40,7 +40,7 @@ ospf_proto:
|
||||||
ospf_proto_start proto_name '{'
|
ospf_proto_start proto_name '{'
|
||||||
| ospf_proto proto_item ';'
|
| ospf_proto proto_item ';'
|
||||||
| ospf_proto RFC1583COMPAT bool ';' { OSPF_CFG->rfc1583 = $3; }
|
| ospf_proto RFC1583COMPAT bool ';' { OSPF_CFG->rfc1583 = $3; }
|
||||||
| ospf_proto ospf_area '}'
|
| ospf_proto ospf_area
|
||||||
;
|
;
|
||||||
|
|
||||||
ospf_area_start: AREA idval '{' {
|
ospf_area_start: AREA idval '{' {
|
||||||
|
@ -54,9 +54,15 @@ ospf_area_start: AREA idval '{' {
|
||||||
;
|
;
|
||||||
|
|
||||||
ospf_area: ospf_area_start
|
ospf_area: ospf_area_start
|
||||||
| ospf_area_start ospf_area_item
|
| ospf_area_start ospf_area_list
|
||||||
;
|
;
|
||||||
|
|
||||||
|
ospf_area_list: /*EMPTY*/ | ospf_area_opts '}'
|
||||||
|
;
|
||||||
|
|
||||||
|
ospf_area_opts:
|
||||||
|
| ospf_area_opts ospf_area_item
|
||||||
|
|
||||||
ospf_area_item:
|
ospf_area_item:
|
||||||
| STUB bool ';' { this_area->stub = $2 ; }
|
| STUB bool ';' { this_area->stub = $2 ; }
|
||||||
| TICK NUM ';' { this_area->tick = $2 ; }
|
| TICK NUM ';' { this_area->tick = $2 ; }
|
||||||
|
|
Loading…
Reference in a new issue