]> git.proxmox.com Git - mirror_frr.git/blame - vtysh/vtysh.h
lib: migrate to new memory-type handling
[mirror_frr.git] / vtysh / vtysh.h
CommitLineData
718e3744 1/* 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
c25e458a 31#define VTYSH_ISISD 0x40
12e41d03
DL
32#define VTYSH_PIMD 0x100
33
34#define VTYSH_ALL VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ISISD|VTYSH_PIMD
35#define VTYSH_RMAP VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_PIMD
36#define VTYSH_INTERFACE VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_ISISD|VTYSH_PIMD
13460c44 37#define VTYSH_NS VTYSH_ZEBRA
96f7d5a8 38#define VTYSH_VRF VTYSH_ZEBRA
718e3744 39
718e3744 40/* vtysh local configuration file. */
41#define VTYSH_DEFAULT_CONFIG "vtysh.conf"
3221dca8 42#define QUAGGA_DEFAULT_CONFIG "Quagga.conf"
718e3744 43
b1aa147d 44void vtysh_init_vty (void);
45void vtysh_init_cmd (void);
f366ad31 46extern int vtysh_connect_all (const char *optional_daemon_name);
b1aa147d 47void vtysh_readline_init (void);
48void vtysh_user_init (void);
718e3744 49
57fb9748
SH
50int vtysh_execute (const char *);
51int vtysh_execute_no_pager (const char *);
718e3744 52
b1aa147d 53char *vtysh_prompt (void);
718e3744 54
b1aa147d 55void vtysh_config_write (void);
718e3744 56
3221dca8 57int vtysh_config_from_file (struct vty *, FILE *);
718e3744 58
4201dd11
DL
59void config_add_line (struct list *, const char *);
60
c0e8c16f 61int vtysh_mark_file(const char *filename);
0846286b 62
c0e8c16f 63int vtysh_read_config (const char *);
718e3744 64
65void vtysh_config_parse (char *);
66
67void vtysh_config_dump (FILE *);
68
b1aa147d 69void vtysh_config_init (void);
718e3744 70
b1aa147d 71void vtysh_pager_init (void);
718e3744 72
73/* Child process execution flag. */
74extern int execute_flag;
75
76extern struct vty *vty;
77
78#endif /* VTYSH_H */