libosmovty  1.4.0.171-b3b83
Osmocom VTY library
command.h
Go to the documentation of this file.
1 
3 /*
4  * Copyright (C) 1997, 98 Kunihiro Ishiguro
5  *
6  * This file is part of GNU Zebra.
7  *
8  * GNU Zebra is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published
10  * by the Free Software Foundation; either version 2, or (at your
11  * option) any later version.
12  *
13  * GNU Zebra is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with GNU Zebra; see the file COPYING. If not, write to the
20  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  */
23 
24 #pragma once
25 
26 #include <stdio.h>
27 #include <stdbool.h>
28 #include <sys/types.h>
29 #include "vector.h"
30 
31 #include <osmocom/core/defs.h>
32 #include <osmocom/core/utils.h>
33 
39 struct host {
41  char *name;
42 
44  char *password;
46 
48  char *enable;
50 
52  int lines;
53 
55  char *logfile;
56 
58  char *config;
59 
61  int advanced;
62  int encrypt;
63 
65  const char *motd;
66  char *motdfile;
67 
69  const struct vty_app_info *app_info;
70 };
71 
73 enum node_type {
103  /*
104  * When adding new nodes to the libosmocore project, these nodes can be
105  * used to avoid ABI changes for unrelated projects.
106  */
110 };
111 
112 #include "vty.h"
113 
116 struct cmd_node {
118  int node;
119 
121  const char *prompt;
122 
124  int vtysh;
125 
127  int (*func) (struct vty *);
128 
131 
135  char name[64];
136 };
137 
139 enum {
141  CMD_ATTR_HIDDEN = (1 << 1),
142  CMD_ATTR_IMMEDIATE = (1 << 2),
143  CMD_ATTR_NODE_EXIT = (1 << 3),
145 };
146 
148 enum {
149  /* The entries of this enum shall conform the following requirements:
150  * 1. Naming format: 'OSMO_' + <LIBNAME> + '_LIB_ATTR_' + <ATTRNAME>,
151  * where LIBNAME is a short name of the library, e.g. 'ABIS', 'MGCP',
152  * and ATTRNAME is a brief name of the attribute, e.g. RTP_CONN_EST;
153  * for example: 'OSMO_ABIS_LIB_ATTR_RSL_LINK_UP'.
154  * 2. Brevity: shortenings and abbreviations are welcome!
155  * 3. Values are not flags but indexes, unlike CMD_ATTR_*.
156  * 4. Ordering: new entries added before _OSMO_CORE_LIB_ATTR_COUNT. */
160 
161  /* Keep this floating entry last, it's needed for count check. */
163 };
164 
166 struct cmd_element {
167  const char *string;
168  int (*func) (struct cmd_element *, struct vty *, int, const char *[]);
169  const char *doc;
170  int daemon;
172  unsigned int cmdsize;
173  char *config;
175  unsigned char attr;
176  unsigned int usrattr;
177 };
178 
180 struct desc {
181  const char *cmd;
182  const char *str;
183 };
184 
186 #define CMD_SUCCESS 0
187 #define CMD_WARNING 1
188 #define CMD_ERR_NO_MATCH 2
189 #define CMD_ERR_AMBIGUOUS 3
190 #define CMD_ERR_INCOMPLETE 4
191 #define CMD_ERR_EXEED_ARGC_MAX 5
192 #define CMD_ERR_NOTHING_TODO 6
193 #define CMD_COMPLETE_FULL_MATCH 7
194 #define CMD_COMPLETE_MATCH 8
195 #define CMD_COMPLETE_LIST_MATCH 9
196 #define CMD_SUCCESS_DAEMON 10
197 #define CMD_ERR_INVALID_INDENT 11
198 
199 /* Argc max counts. */
200 #define CMD_ARGC_MAX 256
201 
202 /* Turn off these macros when uisng cpp with extract.pl */
203 #ifndef VTYSH_EXTRACT_PL
204 
205 /* helper defines for end-user DEFUN* macros */
206 #define DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attrs, dnum) \
207  static struct cmd_element cmdname = \
208  { \
209  .string = cmdstr, \
210  .func = funcname, \
211  .doc = helpstr, \
212  .attr = attrs, \
213  .daemon = dnum, \
214  };
215 
216 /* global (non static) cmd_element */
217 #define gDEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attrs, dnum) \
218  struct cmd_element cmdname = \
219  { \
220  .string = cmdstr, \
221  .func = funcname, \
222  .doc = helpstr, \
223  .attr = attrs, \
224  .daemon = dnum, \
225  };
226 
227 #define DEFUN_CMD_ELEMENT_ATTR_USRATTR(funcname, cmdname, cmdstr, helpstr, attrs, usrattrs) \
228  static struct cmd_element cmdname = \
229  { \
230  .string = cmdstr, \
231  .func = funcname, \
232  .doc = helpstr, \
233  .attr = attrs, \
234  .usrattr = usrattrs, \
235  };
236 
237 #define DEFUN_CMD_FUNC_DECL(funcname) \
238  static int funcname (struct cmd_element *, struct vty *, int, const char *[]); \
239 
240 #define DEFUN_CMD_FUNC_TEXT(funcname) \
241  static int funcname \
242  (struct cmd_element *self, struct vty *vty, int argc, const char *argv[])
243 
250 #define DEFUN(funcname, cmdname, cmdstr, helpstr) \
251  DEFUN_CMD_FUNC_DECL(funcname) \
252  DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0) \
253  DEFUN_CMD_FUNC_TEXT(funcname)
254 
261 #define gDEFUN(funcname, cmdname, cmdstr, helpstr) \
262  DEFUN_CMD_FUNC_DECL(funcname) \
263  gDEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0) \
264  DEFUN_CMD_FUNC_TEXT(funcname)
265 
266 #define DEFUN_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \
267  DEFUN_CMD_FUNC_DECL(funcname) \
268  DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, 0) \
269  DEFUN_CMD_FUNC_TEXT(funcname)
270 
271 #define DEFUN_HIDDEN(funcname, cmdname, cmdstr, helpstr) \
272  DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN)
273 
274 #define DEFUN_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
275  DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED)
276 
285 #define DEFUN_ATTR_USRATTR(funcname, cmdname, attr, usrattr, cmdstr, helpstr) \
286  DEFUN_CMD_FUNC_DECL(funcname) \
287  DEFUN_CMD_ELEMENT_ATTR_USRATTR(funcname, cmdname, cmdstr, helpstr, attr, usrattr) \
288  DEFUN_CMD_FUNC_TEXT(funcname)
289 
290 #define DEFUN_USRATTR(funcname, cmdname, usrattr, cmdstr, helpstr) \
291  DEFUN_ATTR_USRATTR(funcname, cmdname, 0, usrattr, cmdstr, helpstr)
292 
293 /* DEFUN_NOSH for commands that vtysh should ignore */
294 #define DEFUN_NOSH(funcname, cmdname, cmdstr, helpstr) \
295  DEFUN(funcname, cmdname, cmdstr, helpstr)
296 
297 /* DEFSH for vtysh. */
298 #define DEFSH(daemon, cmdname, cmdstr, helpstr) \
299  DEFUN_CMD_ELEMENT(NULL, cmdname, cmdstr, helpstr, 0, daemon) \
300 
301 /* DEFUN + DEFSH */
302 #define DEFUNSH(daemon, funcname, cmdname, cmdstr, helpstr) \
303  DEFUN_CMD_FUNC_DECL(funcname) \
304  DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, daemon) \
305  DEFUN_CMD_FUNC_TEXT(funcname)
306 
307 /* DEFUN + DEFSH with attributes */
308 #define DEFUNSH_ATTR(daemon, funcname, cmdname, cmdstr, helpstr, attr) \
309  DEFUN_CMD_FUNC_DECL(funcname) \
310  DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, daemon) \
311  DEFUN_CMD_FUNC_TEXT(funcname)
312 
313 #define DEFUNSH_HIDDEN(daemon, funcname, cmdname, cmdstr, helpstr) \
314  DEFUNSH_ATTR (daemon, funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN)
315 
316 #define DEFUNSH_DEPRECATED(daemon, funcname, cmdname, cmdstr, helpstr) \
317  DEFUNSH_ATTR (daemon, funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED)
318 
319 /* ALIAS macro which define existing command's alias. */
320 #define ALIAS(funcname, cmdname, cmdstr, helpstr) \
321  DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0)
322 
323 /* global (non static) cmd_element */
324 #define gALIAS(funcname, cmdname, cmdstr, helpstr) \
325  gDEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0)
326 
327 #define ALIAS_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \
328  DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, 0)
329 
330 #define ALIAS_HIDDEN(funcname, cmdname, cmdstr, helpstr) \
331  DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN, 0)
332 
333 #define ALIAS_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
334  DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED, 0)
335 
336 #define ALIAS_SH(daemon, funcname, cmdname, cmdstr, helpstr) \
337  DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, daemon)
338 
339 #define ALIAS_SH_HIDDEN(daemon, funcname, cmdname, cmdstr, helpstr) \
340  DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN, daemon)
341 
342 #define ALIAS_SH_DEPRECATED(daemon, funcname, cmdname, cmdstr, helpstr) \
343  DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED, daemon)
344 
345 #endif /* VTYSH_EXTRACT_PL */
346 
347 /* Some macroes */
348 #define CMD_OPTION(S) ((S[0]) == '[')
349 #define CMD_VARIABLE(S) (((S[0]) >= 'A' && (S[0]) <= 'Z') || ((S[0]) == '<'))
350 #define CMD_VARARG(S) ((S[0]) == '.')
351 #define CMD_RANGE(S) ((S[0] == '<'))
352 
353 #define CMD_IPV4(S) ((strcmp ((S), "A.B.C.D") == 0))
354 #define CMD_IPV4_PREFIX(S) ((strcmp ((S), "A.B.C.D/M") == 0))
355 #define CMD_IPV6(S) ((strcmp ((S), "X:X::X:X") == 0))
356 #define CMD_IPV6_PREFIX(S) ((strcmp ((S), "X:X::X:X/M") == 0))
357 
358 #define VTY_IPV4_CMD "A.B.C.D"
359 #define VTY_IPV6_CMD "X:X::X:X"
360 #define VTY_IPV46_CMD "(" VTY_IPV4_CMD "|" VTY_IPV6_CMD ")"
361 
362 /* Common descriptions. */
363 #define SHOW_STR "Show running system information\n"
364 #define IP_STR "IP information\n"
365 #define IPV6_STR "IPv6 information\n"
366 #define NO_STR "Negate a command or set its defaults\n"
367 #define CLEAR_STR "Reset functions\n"
368 #define RIP_STR "RIP information\n"
369 #define BGP_STR "BGP information\n"
370 #define OSPF_STR "OSPF information\n"
371 #define NEIGHBOR_STR "Specify neighbor router\n"
372 #define DEBUG_STR "Debugging functions (see also 'undebug')\n"
373 #define UNDEBUG_STR "Disable debugging functions (see also 'debug')\n"
374 #define ROUTER_STR "Enable a routing process\n"
375 #define AS_STR "AS number\n"
376 #define MBGP_STR "MBGP information\n"
377 #define MATCH_STR "Match values from routing table\n"
378 #define SET_STR "Set values in destination routing protocol\n"
379 #define OUT_STR "Filter outgoing routing updates\n"
380 #define IN_STR "Filter incoming routing updates\n"
381 #define V4NOTATION_STR "specify by IPv4 address notation(e.g. 0.0.0.0)\n"
382 #define OSPF6_NUMBER_STR "Specify by number\n"
383 #define INTERFACE_STR "Interface infomation\n"
384 #define IFNAME_STR "Interface name(e.g. ep0)\n"
385 #define IP6_STR "IPv6 Information\n"
386 #define OSPF6_STR "Open Shortest Path First (OSPF) for IPv6\n"
387 #define OSPF6_ROUTER_STR "Enable a routing process\n"
388 #define OSPF6_INSTANCE_STR "<1-65535> Instance ID\n"
389 #define SECONDS_STR "<1-65535> Seconds\n"
390 #define ROUTE_STR "Routing Table\n"
391 #define PREFIX_LIST_STR "Build a prefix list\n"
392 #define OSPF6_DUMP_TYPE_LIST \
393 "(neighbor|interface|area|lsa|zebra|config|dbex|spf|route|lsdb|redistribute|hook|asbr|prefix|abr)"
394 #define ISIS_STR "IS-IS information\n"
395 #define AREA_TAG_STR "[area tag]\n"
396 
397 #define CONF_BACKUP_EXT ".sav"
398 
399 /* IPv4 only machine should not accept IPv6 address for peer's IP
400  address. So we replace VTY command string like below. */
401 #ifdef HAVE_IPV6
402 #define NEIGHBOR_CMD "neighbor (A.B.C.D|X:X::X:X) "
403 #define NO_NEIGHBOR_CMD "no neighbor (A.B.C.D|X:X::X:X) "
404 #define NEIGHBOR_ADDR_STR "Neighbor address\nIPv6 address\n"
405 #define NEIGHBOR_CMD2 "neighbor (A.B.C.D|X:X::X:X|WORD) "
406 #define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|X:X::X:X|WORD) "
407 #define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
408 #else
409 #define NEIGHBOR_CMD "neighbor A.B.C.D "
410 #define NO_NEIGHBOR_CMD "no neighbor A.B.C.D "
411 #define NEIGHBOR_ADDR_STR "Neighbor address\n"
412 #define NEIGHBOR_CMD2 "neighbor (A.B.C.D|WORD) "
413 #define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|WORD) "
414 #define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor tag\n"
415 #endif /* HAVE_IPV6 */
416 
417 /* Prototypes. */
418 void install_node(struct cmd_node *, int (*)(struct vty *));
419 void install_default(int node_type) OSMO_DEPRECATED("Now happens implicitly with install_node()");
420 void install_element(int node_type, struct cmd_element *);
421 void install_lib_element(int node_type, struct cmd_element *);
422 void install_element_ve(struct cmd_element *cmd);
423 void install_lib_element_ve(struct cmd_element *cmd);
424 void sort_node(void);
425 
426 void vty_install_default(int node_type) OSMO_DEPRECATED("Now happens implicitly with install_node()");
427 
428 /* Concatenates argv[shift] through argv[argc-1] into a single NUL-terminated
429  string with a space between each element (allocated using
430  XMALLOC(MTYPE_TMP)). Returns NULL if shift >= argc. */
431 char *argv_concat(const char **argv, int argc, int shift);
432 
433 vector cmd_make_strvec(const char *);
434 int cmd_make_strvec2(const char *string, char **indent, vector *strvec_p);
435 void cmd_free_strvec(vector);
437 char **cmd_complete_command();
438 const char *cmd_prompt(enum node_type);
439 int config_from_file(struct vty *, FILE *);
440 enum node_type node_parent(enum node_type);
441 int cmd_execute_command(vector, struct vty *, struct cmd_element **, int);
442 int cmd_execute_command_strict(vector, struct vty *, struct cmd_element **);
443 void config_replace_string(struct cmd_element *, char *, ...);
444 void cmd_init(int);
445 
446 /* Export typical functions. */
447 extern struct cmd_element config_exit_cmd;
448 extern struct cmd_element config_help_cmd;
449 extern struct cmd_element config_list_cmd;
450 extern struct cmd_element config_end_cmd;
451 char *host_config_file();
452 void host_config_set(const char *);
453 
454 char *osmo_asciidoc_escape(const char *inp);
455 
456 /* This is called from main when a daemon is invoked with -v or --version. */
457 void print_version(int print_copyright);
458 
459 extern void *tall_vty_cmd_ctx;
460 
467 };
468 
469 extern const struct value_string vty_ref_gen_mode_names[];
470 extern const struct value_string vty_ref_gen_mode_desc[];
471 
472 int vty_dump_xml_ref_mode(FILE *stream, enum vty_ref_gen_mode mode);
473 int vty_dump_xml_ref(FILE *stream) OSMO_DEPRECATED("Use vty_dump_xml_ref_mode() instead");
474 
int advanced
Flags for services.
Definition: command.h:61
SS7 Application Server Process.
Definition: command.h:94
const char * prompt
Prompt character at vty interface.
Definition: command.h:121
unsigned int usrattr
Command attributes (program specific)
Definition: command.h:176
#define OSMO_DEPRECATED(text)
SS7 root node.
Definition: command.h:92
CPU Sched related options node.
Definition: command.h:102
const char * string
Command specification by string.
Definition: command.h:167
const char * cmd
Command string.
Definition: command.h:181
int daemon
Daemon to which this command belong.
Definition: command.h:170
const char * doc
Documentation of this command.
Definition: command.h:169
char * argv_concat(const char **argv, int argc, int shift)
Definition: command.c:119
Internal representation of a single VTY.
Definition: vty.h:73
Definition: command.h:143
Default mode: all commands except deprecated and hidden.
Definition: command.h:464
const struct value_string vty_ref_gen_mode_desc[]
Definition: command.c:903
NS node in libosmo-gb.
Definition: command.h:88
Definition: command.h:142
int vty_dump_xml_ref_mode(FILE *stream, enum vty_ref_gen_mode mode)
Print the XML reference of all VTY nodes to the given stream.
Definition: command.c:914
void config_replace_string(struct cmd_element *, char *,...)
SS7 xUA Listener.
Definition: command.h:95
char * config
Configuration string.
Definition: command.h:173
const struct vty_app_info * app_info
VTY application information.
Definition: command.h:69
SS7 Link.
Definition: command.h:97
char * password
Password for vty interface.
Definition: command.h:44
Definition: command.h:109
E1 line in libosmo-abis.
Definition: command.h:86
void * tall_vty_cmd_ctx
Definition: command.c:64
Configure the logging.
Definition: command.h:81
IPA proxying commands in libosmo-abis.
Definition: command.h:87
Vty node.
Definition: command.h:84
void install_element(int node_type, struct cmd_element *)
Install a command into a node.
Definition: command.c:966
vty_ref_gen_mode
VTY reference generation mode.
Definition: command.h:462
char * config
config file name of this host
Definition: command.h:58
Command description structure.
Definition: command.h:180
const char * cmd_prompt(enum node_type)
Return prompt character of specified node.
Definition: command.c:495
Host configuration variable.
Definition: command.h:39
Configure the statistics.
Definition: command.h:82
char * motdfile
Definition: command.h:66
Config node.
Definition: command.h:78
void sort_node(void)
Sort each node&#39;s command element according to command string.
Definition: command.c:205
Expert mode: all commands including hidden, excluding deprecated.
Definition: command.h:466
node_type
There are some command levels which called from command node.
Definition: command.h:73
Node which has some commands and prompt string and configuration function pointer ...
Definition: command.h:116
int cmd_make_strvec2(const char *string, char **indent, vector *strvec_p)
Break up string in command tokens.
Definition: command.c:244
Definition: command.h:157
void install_node(struct cmd_node *, int(*)(struct vty *))
Install top node of command vector.
Definition: command.c:181
void cmd_init(int)
Definition: command.c:4313
char ** cmd_complete_command()
vector cmd_describe_command()
int cmd_execute_command(vector, struct vty *, struct cmd_element **, int)
Definition: command.c:2617
void install_default(int node_type) OSMO_DEPRECATED("Now happens implicitly with install_node()")
Deprecated, now happens implicitly when calling install_node().
Definition: command.c:4217
vector cmd_make_strvec(const char *)
Breaking up string into each command piece.
Definition: command.c:315
Definition: command.h:162
struct cmd_element config_list_cmd
void cmd_free_strvec(vector)
Free allocated string vector.
Definition: command.c:323
Authentication mode of vty interface.
Definition: command.h:74
SS7 Application Server.
Definition: command.h:93
View node.
Definition: command.h:75
SS7 Routing Table.
Definition: command.h:96
struct cmd_element config_help_cmd
struct cmd_element config_exit_cmd
SS7 SCCP Address.
Definition: command.h:99
vector strvec
Pointing out each description vector.
Definition: command.h:171
void install_lib_element(int node_type, struct cmd_element *)
Install a library command into a node.
Definition: command.c:987
int lines
System wide terminal lines.
Definition: command.h:52
char * logfile
Log filename.
Definition: command.h:55
int vtysh
Is this node&#39;s configuration goes to vtysh ?
Definition: command.h:124
char * enable_encrypt
Definition: command.h:49
const char * motd
Banner configuration.
Definition: command.h:65
char * osmo_asciidoc_escape(const char *inp)
escape all special asciidoc symbols
Definition: command.c:508
vector cmd_vector
Vector of this node&#39;s command list.
Definition: command.h:130
Service node.
Definition: command.h:79
char * password_encrypt
Definition: command.h:45
Reserved for later extensions.
Definition: command.h:107
int cmd_execute_command_strict(vector, struct vty *, struct cmd_element **)
Definition: command.c:2651
Generic vector interface header.
char * enable
Enable password.
Definition: command.h:48
SS7 SCCP Global Title.
Definition: command.h:100
Structure of a command element.
Definition: command.h:166
int encrypt
Definition: command.h:62
unsigned char attr
Command attributes (global)
Definition: command.h:175
char * name
Host name of this router.
Definition: command.h:41
void install_element_ve(struct cmd_element *cmd)
Definition: command.c:994
void vty_install_default(int node_type) OSMO_DEPRECATED("Now happens implicitly with install_node()")
Deprecated, now happens implicitly when calling install_node().
Definition: command.c:4224
Definition: command.h:144
int config_from_file(struct vty *, FILE *)
Definition: command.c:2787
Definition: command.h:159
void install_lib_element_ve(struct cmd_element *cmd)
Definition: command.c:1001
int node
Node index.
Definition: command.h:118
vector subconfig
Sub configuration string.
Definition: command.h:174
unsigned int cmdsize
Command index count.
Definition: command.h:172
int vty_dump_xml_ref(FILE *stream) OSMO_DEPRECATED("Use vty_dump_xml_ref_mode() instead")
Print the XML reference of all VTY nodes to the given stream.
Definition: command.c:941
Definition: command.h:140
SS7 Linkset.
Definition: command.h:98
Control interface node.
Definition: command.h:90
enum node_type node_parent(enum node_type)
void print_version(int print_copyright)
print the version (and optionally copyright) information
Definition: command.c:110
void host_config_set(const char *)
Definition: command.c:4209
const char * str
Command&#39;s description.
Definition: command.h:182
const struct value_string vty_ref_gen_mode_names[]
Definition: command.c:897
Enable node.
Definition: command.h:77
struct cmd_element config_end_cmd
Definition: command.h:158
Authentication mode for change enable.
Definition: command.h:76
Information an application registers with the VTY.
Definition: vty.h:182
BSSGP node in libosmo-gb.
Definition: command.h:89
Debug node.
Definition: command.h:80
char * host_config_file()
Definition: vector.h:27
Definition: command.h:141