]> git.proxmox.com Git - mirror_frr.git/blame - ldpd/ldp_vty.h
zebra: Convert socket interface to use `union sockunion`
[mirror_frr.git] / ldpd / ldp_vty.h
CommitLineData
eac6e3f0
RW
1/*
2 * Copyright (C) 2016 by Open Source Routing.
3 *
180fc2cd
RW
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
eac6e3f0 8 *
180fc2cd 9 * This program is distributed in the hope that it will be useful, but
eac6e3f0
RW
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
180fc2cd
RW
14 * You should have received a copy of the GNU General Public License
15 * along with this program; see the file COPYING; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
17 * MA 02110-1301 USA
eac6e3f0
RW
18 */
19
20#ifndef _LDP_VTY_H_
21#define _LDP_VTY_H_
22
23#include "vty.h"
24
25extern struct cmd_node ldp_node;
26extern struct cmd_node ldp_ipv4_node;
27extern struct cmd_node ldp_ipv6_node;
28extern struct cmd_node ldp_ipv4_iface_node;
29extern struct cmd_node ldp_ipv6_iface_node;
30extern struct cmd_node ldp_l2vpn_node;
31extern struct cmd_node ldp_pseudowire_node;
32extern struct cmd_node ldp_debug_node;
33
34union ldpd_addr;
35int ldp_get_address(const char *, int *, union ldpd_addr *);
36int ldp_config_write(struct vty *);
37int ldp_l2vpn_config_write(struct vty *);
38int ldp_debug_config_write(struct vty *);
1224e5c4
RW
39int ldp_vty_mpls_ldp (struct vty *, const char *);
40int ldp_vty_address_family (struct vty *, const char *, const char *);
16cd3d9d
RW
41int ldp_vty_disc_holdtime(struct vty *, const char *, enum hello_type, long);
42int ldp_vty_disc_interval(struct vty *, const char *, enum hello_type, long);
1224e5c4
RW
43int ldp_vty_targeted_hello_accept(struct vty *, const char *, const char *);
44int ldp_vty_nbr_session_holdtime(struct vty *, const char *, struct in_addr, long);
45int ldp_vty_af_session_holdtime(struct vty *, const char *, long);
46int ldp_vty_interface(struct vty *, const char *, const char *);
47int ldp_vty_trans_addr(struct vty *, const char *, const char *);
48int ldp_vty_neighbor_targeted(struct vty *, const char *, const char *);
49int ldp_vty_label_advertise(struct vty *, const char *, const char *, const char *);
50int ldp_vty_label_allocate(struct vty *, const char *, const char *, const char *);
51int ldp_vty_label_expnull(struct vty *, const char *, const char *);
52int ldp_vty_label_accept(struct vty *, const char *, const char *, const char *);
53int ldp_vty_ttl_security(struct vty *, const char *);
54int ldp_vty_router_id(struct vty *, const char *, struct in_addr);
55int ldp_vty_ds_cisco_interop(struct vty *, const char *);
56int ldp_vty_trans_pref_ipv4(struct vty *, const char *);
57int ldp_vty_neighbor_password(struct vty *, const char *, struct in_addr, const char *);
58int ldp_vty_neighbor_ttl_security(struct vty *, const char *, struct in_addr, const char *);
59int ldp_vty_l2vpn(struct vty *, const char *, const char *);
60int ldp_vty_l2vpn_bridge(struct vty *, const char *, const char *);
61int ldp_vty_l2vpn_mtu(struct vty *, const char *, long);
62int ldp_vty_l2vpn_pwtype(struct vty *, const char *, const char *);
63int ldp_vty_l2vpn_interface(struct vty *, const char *, const char *);
64int ldp_vty_l2vpn_pseudowire(struct vty *, const char *, const char *);
65int ldp_vty_l2vpn_pw_cword(struct vty *, const char *, const char *);
66int ldp_vty_l2vpn_pw_nbr_addr(struct vty *, const char *, const char *);
67int ldp_vty_l2vpn_pw_nbr_id(struct vty *, const char *, struct in_addr);
68int ldp_vty_l2vpn_pw_pwid(struct vty *, const char *, long);
69int ldp_vty_l2vpn_pw_pwstatus(struct vty *, const char *);
c740f7d3 70int ldp_vty_clear_nbr(struct vty *, const char *);
1224e5c4 71int ldp_vty_debug(struct vty *, const char *, const char *, const char *, const char *);
f0722791
RW
72int ldp_vty_show_binding(struct vty *, const char *, const char *, int,
73 const char *, unsigned long, unsigned long, const char *, const char *);
1224e5c4
RW
74int ldp_vty_show_discovery(struct vty *, const char *, const char *, const char *);
75int ldp_vty_show_interface(struct vty *, const char *, const char *);
76int ldp_vty_show_capabilities(struct vty *, const char *);
f0722791
RW
77int ldp_vty_show_neighbor(struct vty *, const char *, int, const char *, const char *);
78int ldp_vty_show_atom_binding(struct vty *, const char *, unsigned long,
79 unsigned long, const char *);
80int ldp_vty_show_atom_vc(struct vty *, const char *, const char *,
81 const char *, const char *);
c740f7d3 82int ldp_vty_show_debugging(struct vty *);
eac6e3f0
RW
83
84void ldp_vty_init(void);
eac6e3f0
RW
85
86#endif /* _LDP_VTY_H_ */