1 /* Virtual terminal interface shell.
2 * Copyright (C) 2000 Kunihiro Ishiguro
4 * This file is part of GNU Zebra.
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with GNU Zebra; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
25 #define VTYSH_ZEBRA 0x01
26 #define VTYSH_RIPD 0x02
27 #define VTYSH_RIPNGD 0x04
28 #define VTYSH_OSPFD 0x08
29 #define VTYSH_OSPF6D 0x10
30 #define VTYSH_BGPD 0x20
31 #define VTYSH_ISISD 0x40
32 #define VTYSH_BABELD 0x80
33 #define VTYSH_PIMD 0x100
34 #define VTYSH_NHRPD 0x200
35 #define VTYSH_ALL VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ISISD|VTYSH_BABELD|VTYSH_PIMD|VTYSH_NHRPD
36 #define VTYSH_RMAP VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_BABELD
37 #define VTYSH_INTERFACE VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_ISISD|VTYSH_BABELD|VTYSH_PIMD|VTYSH_NHRPD
39 /* vtysh local configuration file. */
40 #define VTYSH_DEFAULT_CONFIG "vtysh.conf"
42 void vtysh_init_vty (void);
43 void vtysh_init_cmd (void);
44 extern int vtysh_connect_all (const char *optional_daemon_name);
45 void vtysh_readline_init (void);
46 void vtysh_user_init (void);
48 int vtysh_execute (const char *);
49 int vtysh_execute_no_pager (const char *);
51 char *vtysh_prompt (void);
53 void vtysh_config_write (void);
55 int vtysh_config_from_file (struct vty *, FILE *);
57 int vtysh_read_config (char *);
59 void vtysh_config_parse (char *);
61 void vtysh_config_dump (FILE *);
63 void vtysh_config_init (void);
65 void vtysh_pager_init (void);
67 /* Child process execution flag. */
68 extern int execute_flag;
70 extern struct vty *vty;