diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2016-09-27 23:13:29 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2016-09-27 23:13:29 +0200 |
commit | c8952fc1227e1a7c320d607b67a1f793052244a6 (patch) | |
tree | a3f80eead6217b91c1e1cb3c9d6f479dd6105674 /ripngd/ripngd.c | |
parent | ripngd: dispose of some CHECK ME's for ripng (diff) | |
download | frr-c8952fc1227e1a7c320d607b67a1f793052244a6.tar.xz frr-c8952fc1227e1a7c320d607b67a1f793052244a6.zip |
ripngd: finish CHECK ME's in ripngd
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to '')
-rw-r--r-- | ripngd/ripngd.c | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/ripngd/ripngd.c b/ripngd/ripngd.c index 78a92a497..dc0bfa364 100644 --- a/ripngd/ripngd.c +++ b/ripngd/ripngd.c @@ -2554,23 +2554,15 @@ DEFUN (ripng_timers, return CMD_SUCCESS; } -/* - * CHECK ME - The following ALIASes need to be implemented in this DEFUN - * "no timers basic <0-65535> <0-65535> <0-65535>", - * NO_STR - * "RIPng timers setup\n" - * "Basic timer\n" - * "Routing table update timer value in second. Default is 30.\n" - * "Routing information timeout timer. Default is 180.\n" - * "Garbage collection timer. Default is 120.\n" - * - */ DEFUN (no_ripng_timers, no_ripng_timers_cmd, - "no timers basic", + "no timers basic [(0-65535) (0-65535) (0-65535)", NO_STR "RIPng timers setup\n" - "Basic timer\n") + "Basic timer\n" + "Routing table update timer value in second. Default is 30.\n" + "Routing information timeout timer. Default is 180.\n" + "Garbage collection timer. Default is 120.\n") { /* Set each timer value to the default. */ ripng->update_time = RIPNG_UPDATE_TIMER_DEFAULT; @@ -2583,7 +2575,6 @@ DEFUN (no_ripng_timers, return CMD_SUCCESS; } - DEFUN (show_ipv6_protocols, show_ipv6_protocols_cmd, "show ipv6 protocols", |