Skip to content

Commit

Permalink
ripngd: finish CHECK ME's in ripngd
Browse files Browse the repository at this point in the history
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
  • Loading branch information
qlyoung committed Sep 27, 2016
1 parent 481af2e commit c8952fc
Showing 1 changed file with 5 additions and 14 deletions.
19 changes: 5 additions & 14 deletions ripngd/ripngd.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -2583,7 +2575,6 @@ DEFUN (no_ripng_timers,
return CMD_SUCCESS;
}


DEFUN (show_ipv6_protocols,
show_ipv6_protocols_cmd,
"show ipv6 protocols",
Expand Down

0 comments on commit c8952fc

Please sign in to comment.