diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2016-09-27 23:02:42 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2016-09-27 23:02:42 +0200 |
commit | 481af2edcbc0585d4831a04443b5a081b0078370 (patch) | |
tree | 8ebbe807f38fe12b9cf5912f7aea94d6253064e4 /ripngd/ripng_interface.c | |
parent | ripd: argv not argc (diff) | |
download | frr-481af2edcbc0585d4831a04443b5a081b0078370.tar.xz frr-481af2edcbc0585d4831a04443b5a081b0078370.zip |
ripngd: dispose of some CHECK ME's for ripng
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'ripngd/ripng_interface.c')
-rw-r--r-- | ripngd/ripng_interface.c | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/ripngd/ripng_interface.c b/ripngd/ripng_interface.c index 9c434c8df..408196812 100644 --- a/ripngd/ripng_interface.c +++ b/ripngd/ripng_interface.c @@ -1040,23 +1040,14 @@ DEFUN (ipv6_ripng_split_horizon_poisoned_reverse, return CMD_SUCCESS; } -/* - * CHECK ME - The following ALIASes need to be implemented in this DEFUN - * "no ipv6 ripng split-horizon poisoned-reverse", - * NO_STR - * IPV6_STR - * "Routing Information Protocol\n" - * "Perform split horizon\n" - * "With poisoned-reverse\n" - * - */ DEFUN (no_ipv6_ripng_split_horizon, no_ipv6_ripng_split_horizon_cmd, - "no ipv6 ripng split-horizon", + "no ipv6 ripng split-horizon [poisoned-reverse]", NO_STR IPV6_STR "Routing Information Protocol\n" - "Perform split horizon\n") + "Perform split horizon\n" + "With poisoned-reverse\n") { struct interface *ifp; struct ripng_interface *ri; @@ -1068,7 +1059,6 @@ DEFUN (no_ipv6_ripng_split_horizon, return CMD_SUCCESS; } - DEFUN (ripng_passive_interface, ripng_passive_interface_cmd, "passive-interface IFNAME", |