From: Stephen Worley Date: Thu, 13 Jun 2019 21:06:36 +0000 (-0400) Subject: lib: Add some all daemon command strings X-Git-Tag: frr-7.2~189^2~13 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=db9a7cf7c05c9fe82af50cb28d56a16fda236e76;p=mirror_frr.git lib: Add some all daemon command strings Add some strings for defining vty commands that target all daemons. Signed-off-by: Stephen Worley --- diff --git a/lib/command.h b/lib/command.h index cc4c5d52f..e02f1134b 100644 --- a/lib/command.h +++ b/lib/command.h @@ -411,6 +411,12 @@ struct cmd_node { #define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor IPv6 address\nInterface name or neighbor tag\n" #define NEIGHBOR_ADDR_STR3 "Neighbor address\nIPv6 address\nInterface name\n" +/* Dameons lists */ +#define DAEMONS_STR \ + "For the zebra daemon\nFor the rip daemon\nFor the ripng daemon\nFor the ospf daemon\nFor the ospfv6 daemon\nFor the bgp daemon\nFor the isis daemon\nFor the pbr daemon\nFor the fabricd daemon\nFor the pim daemon\nFor the static daemon\n" +#define DAEMONS_LIST \ + "" + /* Prototypes. */ extern void install_node(struct cmd_node *, int (*)(struct vty *)); extern void install_default(enum node_type);