diff options
author | Pavel Machek <pavel@ucw.cz> | 2000-05-30 13:15:19 +0200 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2000-05-30 13:15:19 +0200 |
commit | f3b33928ce43794d499dc0e1fbbeb623572042d1 (patch) | |
tree | 789a2814a0ad501553a8cfe905629eac2e40faf3 /proto/rip | |
parent | 24e1e2005b0728bfc404f248efb7d17b34cb0910 (diff) | |
download | bird-f3b33928ce43794d499dc0e1fbbeb623572042d1.tar bird-f3b33928ce43794d499dc0e1fbbeb623572042d1.zip |
Tried to change garbagetime -> garbage time to be more consistent.
Diffstat (limited to 'proto/rip')
-rw-r--r-- | proto/rip/config.Y | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/proto/rip/config.Y b/proto/rip/config.Y index 54630ba..00d68f7 100644 --- a/proto/rip/config.Y +++ b/proto/rip/config.Y @@ -24,7 +24,7 @@ CF_DEFINES CF_DECLS -CF_KEYWORDS(RIP, INFINITY, METRIC, PORT, PERIOD, GARBAGETIME, PASSWORDS, +CF_KEYWORDS(RIP, INFINITY, METRIC, PORT, PERIOD, GARBAGE, TIMEOUT, PASSWORDS, MODE, BROADCAST, MULTICAST, QUIET, NOLISTEN, VERSION1, AUTHENTICATION, NONE, PLAINTEXT, MD5, HONOR, NEVER, NEIGHBOR, ALWAYS, @@ -48,7 +48,8 @@ rip_cfg: | rip_cfg INFINITY expr ';' { RIP_CFG->infinity = $3; } | rip_cfg PORT expr ';' { RIP_CFG->port = $3; } | rip_cfg PERIOD expr ';' { RIP_CFG->period = $3; } - | rip_cfg GARBAGETIME expr ';' { RIP_CFG->garbage_time = $3; } + | rip_cfg GARBAGE TIME expr ';' { RIP_CFG->garbage_time = $4; } + | rip_cfg TIMEOUT TIME expr ';' { RIP_CFG->timeout_time = $4; } | rip_cfg AUTHENTICATION rip_auth ';' {RIP_CFG->authtype = $3; } | rip_cfg PASSWORDS '{' password_list '}' {RIP_CFG->passwords = $4; } | rip_cfg HONOR ALWAYS ';' { RIP_CFG->honor = HO_ALWAYS; } |