diff options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/confbase.Y | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/conf/confbase.Y b/conf/confbase.Y index ce718130..47ee07ce 100644 --- a/conf/confbase.Y +++ b/conf/confbase.Y @@ -272,12 +272,8 @@ net_any: net_or_ipa: net_ip4_ | net_ip6_ - | net_vpn4_ { $$ = *$1; } - | net_vpn6_ { $$ = *$1; } | IP4 { net_fill_ip4(&($$), $1, IP4_MAX_PREFIX_LENGTH); } | IP6 { net_fill_ip6(&($$), $1, IP6_MAX_PREFIX_LENGTH); } - | VPN_RD IP4 { net_fill_vpn4(&($$), $2, IP4_MAX_PREFIX_LENGTH, $1); } - | VPN_RD IP6 { net_fill_vpn6(&($$), $2, IP6_MAX_PREFIX_LENGTH, $1); } | SYM { if ($1->class == (SYM_CONSTANT | T_IP)) net_fill_ip_host(&($$), SYM_VAL($1).ip); |