summaryrefslogtreecommitdiffstats
path: root/nest/config.Y
diff options
context:
space:
mode:
Diffstat (limited to 'nest/config.Y')
-rw-r--r--nest/config.Y18
1 files changed, 9 insertions, 9 deletions
diff --git a/nest/config.Y b/nest/config.Y
index b3dfdf2..dc31224 100644
--- a/nest/config.Y
+++ b/nest/config.Y
@@ -44,7 +44,7 @@ CF_KEYWORDS(ROUTER, ID, PROTOCOL, PREFERENCE, DISABLED, DEBUG, ALL, OFF, DIRECT)
CF_KEYWORDS(INTERFACE, IMPORT, EXPORT, FILTER, NONE, TABLE, STATES, ROUTES, FILTERS)
CF_KEYWORDS(PASSWORD, FROM, PASSIVE, TO, ID, EVENTS, PACKETS, PROTOCOLS, INTERFACES)
CF_KEYWORDS(PRIMARY, STATS, COUNT, FOR, COMMANDS, PREEXPORT, GENERATE)
-CF_KEYWORDS(BIND, BGP, V6ONLY, ADDRESS, PORT)
+CF_KEYWORDS(LISTEN, BGP, V6ONLY, ADDRESS, PORT)
CF_ENUM(T_ENUM_RTS, RTS_, DUMMY, STATIC, INHERIT, DEVICE, STATIC_DEVICE, REDIRECT,
RIP, OSPF, OSPF_IA, OSPF_EXT1, OSPF_EXT2, BGP, PIPE)
@@ -84,19 +84,19 @@ idval:
;
-CF_ADDTO(conf, bind)
+CF_ADDTO(conf, listen)
-bind: BIND BGP bind_opts ';' ;
+listen: LISTEN BGP listen_opts ';' ;
-bind_opts:
+listen_opts:
/* Nothing */
- | bind_opts bind_opt
+ | listen_opts listen_opt
;
-bind_opt:
- ADDRESS ipa { new_config->bind_bgp_addr = $2; }
- | PORT expr { new_config->bind_bgp_port = $2; }
- | V6ONLY { new_config->bind_bgp_flags |= SKF_V6ONLY; }
+listen_opt:
+ ADDRESS ipa { new_config->listen_bgp_addr = $2; }
+ | PORT expr { new_config->listen_bgp_port = $2; }
+ | V6ONLY { new_config->listen_bgp_flags |= SKF_V6ONLY; }
;