]> git.proxmox.com Git - mirror_frr.git/blame - isisd/isis_cli.h
isisd: retrofit the 'max-lsp-lifetime' command
[mirror_frr.git] / isisd / isis_cli.h
CommitLineData
20bd27e2
EDP
1/*
2 * Copyright (C) 2018 Volta Networks
3 * Emanuele Di Pascale
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the Free
7 * Software Foundation; either version 2 of the License, or (at your option)
8 * any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; see the file COPYING; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#ifndef ISISD_ISIS_CLI_H_
21#define ISISD_ISIS_CLI_H_
22
23/* add cli_show declarations here as externs */
aaf2fd21
EDP
24void cli_show_router_isis(struct vty *vty, struct lyd_node *dnode,
25 bool show_defaults);
26void cli_show_ip_isis_ipv4(struct vty *vty, struct lyd_node *dnode,
27 bool show_defaults);
28void cli_show_ip_isis_ipv6(struct vty *vty, struct lyd_node *dnode,
29 bool show_defaults);
f084ea55
EDP
30void cli_show_isis_area_address(struct vty *vty, struct lyd_node *dnode,
31 bool show_defaults);
e6bdae69
EDP
32void cli_show_isis_is_type(struct vty *vty, struct lyd_node *dnode,
33 bool show_defaults);
6bb043cd
EDP
34void cli_show_isis_dynamic_hostname(struct vty *vty, struct lyd_node *dnode,
35 bool show_defaults);
05a3f9f0
EDP
36void cli_show_isis_attached(struct vty *vty, struct lyd_node *dnode,
37 bool show_defaults);
38void cli_show_isis_overload(struct vty *vty, struct lyd_node *dnode,
39 bool show_defaults);
e0df3206
EDP
40void cli_show_isis_metric_style(struct vty *vty, struct lyd_node *dnode,
41 bool show_defaults);
933536e3
EDP
42void cli_show_isis_area_pwd(struct vty *vty, struct lyd_node *dnode,
43 bool show_defaults);
44void cli_show_isis_domain_pwd(struct vty *vty, struct lyd_node *dnode,
45 bool show_defaults);
1d6fe72e
EDP
46void cli_show_isis_lsp_gen_interval(struct vty *vty, struct lyd_node *dnode,
47 bool show_defaults);
7e869004
EDP
48void cli_show_isis_lsp_ref_interval(struct vty *vty, struct lyd_node *dnode,
49 bool show_defaults);
ea120aa0
EDP
50void cli_show_isis_lsp_max_lifetime(struct vty *vty, struct lyd_node *dnode,
51 bool show_defaults);
20bd27e2
EDP
52
53#endif /* ISISD_ISIS_CLI_H_ */