0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-10-18 09:58:43 +00:00

RPKI: remove old code from grammar

This commit is contained in:
Pavel Tvrdík 2016-01-25 15:33:47 +01:00
parent 53e411b363
commit a1f92cf15b

View File

@ -36,25 +36,18 @@ proto_start RPKI {
} }
; ;
rpki_proto_finish:
{
// if (RPKI_CFG->roa_table_cf == NULL)
// cf_error("For the RPKI protocol must be specified a roa table");
};
rpki_proto_opts: rpki_proto_opts:
/* empty */ /* empty */
| rpki_proto_opts rpki_proto_item ';' | rpki_proto_opts rpki_proto_item ';'
; ;
rpki_proto_item: rpki_proto_item:
proto_item proto_item
| CACHE rpki_cache | CACHE rpki_cache
/* | ROA TABLE roa_table_cf { RPKI_CFG->roa_table_cf = $3; } */ ;
;
rpki_cache: rpki_cache:
rpki_cache_init rpki_cache_addr rpki_optional_cache_opts rpki_cache_finish { rpki_cache_init rpki_cache_addr rpki_optional_cache_opts {
add_tail(&RPKI_CFG->cache_cfg_list, &this_rpki_cache_cfg->n); add_tail(&RPKI_CFG->cache_cfg_list, &this_rpki_cache_cfg->n);
} }
; ;