]> git.proxmox.com Git - mirror_frr.git/blame - vtysh/vtysh.h
ospf6d: fix decimal area ID cli
[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
4a1ab8e4
DL
25#include "memory.h"
26DECLARE_MGROUP(MVTYSH)
27
718e3744 28#define VTYSH_ZEBRA 0x01
29#define VTYSH_RIPD 0x02
30#define VTYSH_RIPNGD 0x04
31#define VTYSH_OSPFD 0x08
32#define VTYSH_OSPF6D 0x10
33#define VTYSH_BGPD 0x20
c25e458a 34#define VTYSH_ISISD 0x40
12e41d03 35#define VTYSH_PIMD 0x100
4fcbf6e2 36#define VTYSH_LDPD 0x200
9473e340 37#define VTYSH_WATCHFRR 0x400
12e41d03 38
4a96e944
DL
39/* commands in REALLYALL are crucial to correct vtysh operation */
40#define VTYSH_REALLYALL ~0U
9473e340 41/* watchfrr is not in ALL since library CLI functions should not be
4a96e944
DL
42 * run on it (logging & co. should stay in a fixed/frozen config, and
43 * things like prefix lists are not even initialised) */
4fcbf6e2 44#define VTYSH_ALL VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_LDPD|VTYSH_BGPD|VTYSH_ISISD|VTYSH_PIMD
12e41d03 45#define VTYSH_RMAP VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_PIMD
4fcbf6e2 46#define VTYSH_INTERFACE VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_LDPD|VTYSH_ISISD|VTYSH_PIMD
13460c44 47#define VTYSH_NS VTYSH_ZEBRA
96f7d5a8 48#define VTYSH_VRF VTYSH_ZEBRA
718e3744 49
718e3744 50/* vtysh local configuration file. */
51#define VTYSH_DEFAULT_CONFIG "vtysh.conf"
685e701e 52#define FRR_DEFAULT_CONFIG "frr.conf"
718e3744 53
039eaca3
CF
54enum vtysh_write_integrated {
55 WRITE_INTEGRATED_UNSPECIFIED,
56 WRITE_INTEGRATED_NO,
57 WRITE_INTEGRATED_YES
58};
59
60extern enum vtysh_write_integrated vtysh_write_integrated;
61
cb947ba3
DL
62extern char *quagga_config;
63
b1aa147d 64void vtysh_init_vty (void);
65void vtysh_init_cmd (void);
f366ad31 66extern int vtysh_connect_all (const char *optional_daemon_name);
b1aa147d 67void vtysh_readline_init (void);
68void vtysh_user_init (void);
718e3744 69
57fb9748
SH
70int vtysh_execute (const char *);
71int vtysh_execute_no_pager (const char *);
718e3744 72
b1aa147d 73char *vtysh_prompt (void);
718e3744 74
b1aa147d 75void vtysh_config_write (void);
718e3744 76
3221dca8 77int vtysh_config_from_file (struct vty *, FILE *);
718e3744 78
4201dd11
DL
79void config_add_line (struct list *, const char *);
80
c0e8c16f 81int vtysh_mark_file(const char *filename);
0846286b 82
c0e8c16f 83int vtysh_read_config (const char *);
a68f8616 84int vtysh_write_config_integrated (void);
718e3744 85
7526a182 86void vtysh_config_parse_line (const char *);
718e3744 87
88void vtysh_config_dump (FILE *);
89
b1aa147d 90void vtysh_config_init (void);
718e3744 91
b1aa147d 92void vtysh_pager_init (void);
718e3744 93
94/* Child process execution flag. */
95extern int execute_flag;
96
97extern struct vty *vty;
98
87d79a9f
MW
99extern char * vty_sock_path;
100
718e3744 101#endif /* VTYSH_H */