diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-12-12 00:05:49 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-12-12 00:05:49 +0100 |
commit | 66acbc8d7f80ce3c197549922b60fca093129047 (patch) | |
tree | d4cd38f5b8c2b1fcc4fd31020b43871a453345dc /conf | |
parent | fa5c09a2e708ed505ca140531b98e695fdaf989c (diff) |
Revive FIB and kernel MPLS code
Diffstat (limited to 'conf')
-rw-r--r-- | conf/confbase.Y | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/conf/confbase.Y b/conf/confbase.Y index 16330984..7e0537c5 100644 --- a/conf/confbase.Y +++ b/conf/confbase.Y @@ -83,7 +83,7 @@ CF_DECLS %type <time> expr_us time %type <a> ipa %type <net> net_ip4_ net_ip6_ net_ip6 net_ip_ net_ip net_or_ipa -%type <net_ptr> net_ net_any net_vpn4_ net_vpn6_ net_vpn_ net_roa4_ net_roa6_ net_roa_ +%type <net_ptr> net_ net_any net_vpn4_ net_vpn6_ net_vpn_ net_roa4_ net_roa6_ net_roa_ net_mpls_ %type <mls> label_stack_start label_stack %type <t> text opttext @@ -96,7 +96,7 @@ CF_DECLS %left '!' %nonassoc '.' -CF_KEYWORDS(DEFINE, ON, OFF, YES, NO, S, MS, US, PORT, VPN) +CF_KEYWORDS(DEFINE, ON, OFF, YES, NO, S, MS, US, PORT, VPN, MPLS) CF_GRAMMAR @@ -234,6 +234,12 @@ net_roa6_: net_ip6_ MAX NUM AS NUM cf_error("Invalid max prefix length %u", $3); }; +net_mpls_: MPLS NUM +{ + $$ = cfg_alloc(sizeof(net_addr_roa6)); + net_fill_mpls($$, $2); +} + net_ip_: net_ip4_ | net_ip6_ ; net_vpn_: net_vpn4_ | net_vpn6_ ; net_roa_: net_roa4_ | net_roa6_ ; @@ -243,6 +249,7 @@ net_: | net_vpn_ | net_roa_ | net_flow_ + | net_mpls_ ; |