diff options
author | Renato Westphal <renato@openbsd.org> | 2018-07-09 20:29:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-09 20:29:33 +0200 |
commit | b4d3968a6835422a80129d828bde95715d9d74de (patch) | |
tree | 9e47edde0e6431b57d6336d726dbc954cbe96cb9 | |
parent | Merge pull request #2632 from ppmathis/bugfix/bgp-autoshut (diff) | |
parent | ospfd: Remove deprecated code (diff) | |
download | frr-b4d3968a6835422a80129d828bde95715d9d74de.tar.xz frr-b4d3968a6835422a80129d828bde95715d9d74de.zip |
Merge pull request #2642 from donaldsharp/deprecated
ospfd: Remove deprecated code
-rw-r--r-- | ospfd/ospf_vty.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index ec654b9e2..fb9770d09 100644 --- a/ospfd/ospf_vty.c +++ b/ospfd/ospf_vty.c @@ -2336,27 +2336,6 @@ DEFUN (no_ospf_timers_lsa_min_arrival, return CMD_SUCCESS; } -#if defined(VERSION_TYPE_DEV) && CONFDATE > 20180708 -CPP_NOTICE("ospf: `timers lsa arrival (0-1000)` deprecated 2017/07/08") -#endif -ALIAS_HIDDEN(ospf_timers_lsa_min_arrival, ospf_timers_lsa_arrival_cmd, - "timers lsa arrival (0-1000)", - "adjust routing timers\n" - "throttling link state advertisement delays\n" - "ospf minimum arrival interval delay\n" - "delay (msec) between accepted lsas\n"); - -#if defined(VERSION_TYPE_DEV) && CONFDATE > 20180708 -CPP_NOTICE("ospf: `no timers lsa arrival (0-1000)` deprecated 2017/07/08") -#endif -ALIAS_HIDDEN(no_ospf_timers_lsa_min_arrival, no_ospf_timers_lsa_arrival_cmd, - "no timers lsa arrival (0-1000)", NO_STR - "adjust routing timers\n" - "throttling link state advertisement delays\n" - "ospf minimum arrival interval delay\n" - "delay (msec) between accepted lsas\n"); - - DEFUN (ospf_neighbor, ospf_neighbor_cmd, "neighbor A.B.C.D [priority (0-255) [poll-interval (1-65535)]]", @@ -10661,8 +10640,6 @@ void ospf_vty_init(void) install_element(OSPF_NODE, &no_ospf_timers_min_ls_interval_cmd); install_element(OSPF_NODE, &ospf_timers_lsa_min_arrival_cmd); install_element(OSPF_NODE, &no_ospf_timers_lsa_min_arrival_cmd); - install_element(OSPF_NODE, &ospf_timers_lsa_arrival_cmd); - install_element(OSPF_NODE, &no_ospf_timers_lsa_arrival_cmd); /* refresh timer commands */ install_element(OSPF_NODE, &ospf_refresh_timer_cmd); |