blob: 5d513c8da8c06d6b8b8c6823d21dbbbc30c41ea7 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* Virtual terminal interface shell.
2 * Copyright (C) 2000 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
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
9 * later version.
10 *
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.
15 *
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
19 * 02111-1307, USA.
20 */
21
22#ifndef VTYSH_H
23#define VTYSH_H
24
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
hassoc25e4582003-12-23 10:39:08 +000031#define VTYSH_ISISD 0x40
Juliusz Chroboczekfeb6c532012-02-07 04:58:49 +010032#define VTYSH_BABELD 0x80
Leonard Herve596470f2009-08-11 15:45:26 -030033#define VTYSH_ALL VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ISISD|VTYSH_BABELD|VTYSH_PIMD
Juliusz Chroboczekfeb6c532012-02-07 04:58:49 +010034#define VTYSH_RMAP VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_BABELD
Leonard Herve596470f2009-08-11 15:45:26 -030035#define VTYSH_INTERFACE VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_ISISD|VTYSH_BABELD|VTYSH_PIMD
paul718e3742002-12-13 20:15:29 +000036
paul718e3742002-12-13 20:15:29 +000037/* vtysh local configuration file. */
38#define VTYSH_DEFAULT_CONFIG "vtysh.conf"
39
ajsb1aa1472005-01-28 21:11:46 +000040void vtysh_init_vty (void);
41void vtysh_init_cmd (void);
Andrew J. Schorrf366ad32006-07-27 18:01:41 +000042extern int vtysh_connect_all (const char *optional_daemon_name);
ajsb1aa1472005-01-28 21:11:46 +000043void vtysh_readline_init (void);
44void vtysh_user_init (void);
paul718e3742002-12-13 20:15:29 +000045
Stephen Hemminger57fb9742008-07-28 12:19:04 -070046int vtysh_execute (const char *);
47int vtysh_execute_no_pager (const char *);
paul718e3742002-12-13 20:15:29 +000048
ajsb1aa1472005-01-28 21:11:46 +000049char *vtysh_prompt (void);
paul718e3742002-12-13 20:15:29 +000050
ajsb1aa1472005-01-28 21:11:46 +000051void vtysh_config_write (void);
paul718e3742002-12-13 20:15:29 +000052
53int vtysh_config_from_file (struct vty *, FILE *);
54
hassoe7168df2004-10-03 20:11:32 +000055int vtysh_read_config (char *);
paul718e3742002-12-13 20:15:29 +000056
57void vtysh_config_parse (char *);
58
59void vtysh_config_dump (FILE *);
60
ajsb1aa1472005-01-28 21:11:46 +000061void vtysh_config_init (void);
paul718e3742002-12-13 20:15:29 +000062
ajsb1aa1472005-01-28 21:11:46 +000063void vtysh_pager_init (void);
paul718e3742002-12-13 20:15:29 +000064
65/* Child process execution flag. */
66extern int execute_flag;
67
68extern struct vty *vty;
69
70#endif /* VTYSH_H */