]> git.proxmox.com Git - mirror_frr.git/blame - vtysh/vtysh.h
*: add indent control files
[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 *
896014f4
DL
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 19 */
20
21#ifndef VTYSH_H
22#define VTYSH_H
23
4a1ab8e4
DL
24#include "memory.h"
25DECLARE_MGROUP(MVTYSH)
26
718e3744 27#define VTYSH_ZEBRA 0x01
28#define VTYSH_RIPD 0x02
29#define VTYSH_RIPNGD 0x04
30#define VTYSH_OSPFD 0x08
31#define VTYSH_OSPF6D 0x10
32#define VTYSH_BGPD 0x20
c25e458a 33#define VTYSH_ISISD 0x40
12e41d03 34#define VTYSH_PIMD 0x100
4fcbf6e2 35#define VTYSH_LDPD 0x200
9473e340 36#define VTYSH_WATCHFRR 0x400
2fb975da 37#define VTYSH_NHRPD 0x800
7f57883e 38#define VTYSH_EIGRPD 0x1000
ca10883e 39#define VTYSH_BABELD 0x2000
12e41d03 40
4a96e944
DL
41/* commands in REALLYALL are crucial to correct vtysh operation */
42#define VTYSH_REALLYALL ~0U
9473e340 43/* watchfrr is not in ALL since library CLI functions should not be
4a96e944
DL
44 * run on it (logging & co. should stay in a fixed/frozen config, and
45 * things like prefix lists are not even initialised) */
ca10883e 46#define VTYSH_ALL VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_LDPD|VTYSH_BGPD|VTYSH_ISISD|VTYSH_PIMD|VTYSH_NHRPD|VTYSH_EIGRPD|VTYSH_BABELD
12e41d03 47#define VTYSH_RMAP VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_PIMD
ca10883e 48#define VTYSH_INTERFACE VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_ISISD|VTYSH_PIMD|VTYSH_NHRPD|VTYSH_EIGRPD|VTYSH_BABELD
13460c44 49#define VTYSH_NS VTYSH_ZEBRA
96f7d5a8 50#define VTYSH_VRF VTYSH_ZEBRA
718e3744 51
718e3744 52/* vtysh local configuration file. */
53#define VTYSH_DEFAULT_CONFIG "vtysh.conf"
e20dc2ba 54#define FRR_DEFAULT_CONFIG "frr.conf"
718e3744 55
039eaca3
CF
56enum vtysh_write_integrated {
57 WRITE_INTEGRATED_UNSPECIFIED,
58 WRITE_INTEGRATED_NO,
59 WRITE_INTEGRATED_YES
60};
61
62extern enum vtysh_write_integrated vtysh_write_integrated;
63
cb947ba3
DL
64extern char *quagga_config;
65
b1aa147d 66void vtysh_init_vty (void);
67void vtysh_init_cmd (void);
f366ad31 68extern int vtysh_connect_all (const char *optional_daemon_name);
b1aa147d 69void vtysh_readline_init (void);
70void vtysh_user_init (void);
718e3744 71
57fb9748
SH
72int vtysh_execute (const char *);
73int vtysh_execute_no_pager (const char *);
718e3744 74
b1aa147d 75char *vtysh_prompt (void);
718e3744 76
b1aa147d 77void vtysh_config_write (void);
718e3744 78
3221dca8 79int vtysh_config_from_file (struct vty *, FILE *);
718e3744 80
4201dd11
DL
81void config_add_line (struct list *, const char *);
82
c0e8c16f 83int vtysh_mark_file(const char *filename);
0846286b 84
c0e8c16f 85int vtysh_read_config (const char *);
a68f8616 86int vtysh_write_config_integrated (void);
718e3744 87
7f059ea6 88void vtysh_config_parse_line (void *, const char *);
718e3744 89
90void vtysh_config_dump (FILE *);
91
b1aa147d 92void vtysh_config_init (void);
718e3744 93
b1aa147d 94void vtysh_pager_init (void);
718e3744 95
96/* Child process execution flag. */
97extern int execute_flag;
98
99extern struct vty *vty;
100
eb05883f 101extern const char * vty_sock_path;
87d79a9f 102
718e3744 103#endif /* VTYSH_H */