summaryrefslogtreecommitdiff
path: root/conf/confbase.Y
diff options
context:
space:
mode:
authorJan Moskyto Matejka <mq@ucw.cz>2017-04-18 13:45:50 +0200
committerJan Moskyto Matejka <mq@ucw.cz>2017-04-18 13:45:50 +0200
commit3484cb9a654cab9bd2c2b1164528d3000a22a79e (patch)
tree42c91da5916d5251995c0e0d5a8b845147b06133 /conf/confbase.Y
parent7ee07a3c3966ec787bcb7e5100c1add4abef9213 (diff)
Client: separate config syntax structure for "show route for"
Diffstat (limited to 'conf/confbase.Y')
-rw-r--r--conf/confbase.Y4
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);