Diff for /embedaddon/quagga/lib/memory.c between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 17:26:12 version 1.1.1.2, 2012/10/09 09:22:28
Line 466  DEFUN (show_memory_ripng, Line 466  DEFUN (show_memory_ripng,
   return CMD_SUCCESS;    return CMD_SUCCESS;
 }  }
   
   DEFUN (show_memory_babel,
          show_memory_babel_cmd,
          "show memory babel",
          SHOW_STR
          "Memory statistics\n"
          "Babel memory\n")
   {
     show_memory_vty (vty, memory_list_babel);
     return CMD_SUCCESS;
   }
   
 DEFUN (show_memory_bgp,  DEFUN (show_memory_bgp,
        show_memory_bgp_cmd,         show_memory_bgp_cmd,
        "show memory bgp",         "show memory bgp",
Line 518  memory_init (void) Line 529  memory_init (void)
   install_element (RESTRICTED_NODE, &show_memory_lib_cmd);    install_element (RESTRICTED_NODE, &show_memory_lib_cmd);
   install_element (RESTRICTED_NODE, &show_memory_rip_cmd);    install_element (RESTRICTED_NODE, &show_memory_rip_cmd);
   install_element (RESTRICTED_NODE, &show_memory_ripng_cmd);    install_element (RESTRICTED_NODE, &show_memory_ripng_cmd);
     install_element (RESTRICTED_NODE, &show_memory_babel_cmd);
   install_element (RESTRICTED_NODE, &show_memory_bgp_cmd);    install_element (RESTRICTED_NODE, &show_memory_bgp_cmd);
   install_element (RESTRICTED_NODE, &show_memory_ospf_cmd);    install_element (RESTRICTED_NODE, &show_memory_ospf_cmd);
   install_element (RESTRICTED_NODE, &show_memory_ospf6_cmd);    install_element (RESTRICTED_NODE, &show_memory_ospf6_cmd);
Line 528  memory_init (void) Line 540  memory_init (void)
   install_element (VIEW_NODE, &show_memory_lib_cmd);    install_element (VIEW_NODE, &show_memory_lib_cmd);
   install_element (VIEW_NODE, &show_memory_rip_cmd);    install_element (VIEW_NODE, &show_memory_rip_cmd);
   install_element (VIEW_NODE, &show_memory_ripng_cmd);    install_element (VIEW_NODE, &show_memory_ripng_cmd);
     install_element (VIEW_NODE, &show_memory_babel_cmd);
   install_element (VIEW_NODE, &show_memory_bgp_cmd);    install_element (VIEW_NODE, &show_memory_bgp_cmd);
   install_element (VIEW_NODE, &show_memory_ospf_cmd);    install_element (VIEW_NODE, &show_memory_ospf_cmd);
   install_element (VIEW_NODE, &show_memory_ospf6_cmd);    install_element (VIEW_NODE, &show_memory_ospf6_cmd);
Line 539  memory_init (void) Line 552  memory_init (void)
   install_element (ENABLE_NODE, &show_memory_zebra_cmd);    install_element (ENABLE_NODE, &show_memory_zebra_cmd);
   install_element (ENABLE_NODE, &show_memory_rip_cmd);    install_element (ENABLE_NODE, &show_memory_rip_cmd);
   install_element (ENABLE_NODE, &show_memory_ripng_cmd);    install_element (ENABLE_NODE, &show_memory_ripng_cmd);
     install_element (ENABLE_NODE, &show_memory_babel_cmd);
   install_element (ENABLE_NODE, &show_memory_bgp_cmd);    install_element (ENABLE_NODE, &show_memory_bgp_cmd);
   install_element (ENABLE_NODE, &show_memory_ospf_cmd);    install_element (ENABLE_NODE, &show_memory_ospf_cmd);
   install_element (ENABLE_NODE, &show_memory_ospf6_cmd);    install_element (ENABLE_NODE, &show_memory_ospf6_cmd);

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>