summaryrefslogtreecommitdiffstats
path: root/ldpd/ldp_vty.h
blob: 5c83d1c56cf1bc7aa0c02047a2cfacdcecee0683 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Copyright (C) 2016 by Open Source Routing.
 */

#ifndef _LDP_VTY_H_
#define _LDP_VTY_H_

#include "vty.h"

extern struct cmd_node ldp_node;
extern struct cmd_node ldp_ipv4_node;
extern struct cmd_node ldp_ipv6_node;
extern struct cmd_node ldp_ipv4_iface_node;
extern struct cmd_node ldp_ipv6_iface_node;
extern struct cmd_node ldp_l2vpn_node;
extern struct cmd_node ldp_pseudowire_node;
extern struct cmd_node ldp_debug_node;

union ldpd_addr;
int	 ldp_get_address(const char *, int *, union ldpd_addr *);
int	 ldp_vty_mpls_ldp (struct vty *, const char *);
int	 ldp_vty_allow_broken_lsp(struct vty *, const char *);
int	 ldp_vty_address_family (struct vty *, const char *, const char *);
int	 ldp_vty_disc_holdtime(struct vty *, const char *, enum hello_type, long);
int	 ldp_vty_disc_interval(struct vty *, const char *, enum hello_type, long);
int	 ldp_vty_targeted_hello_accept(struct vty *, const char *, const char *);
int	 ldp_vty_nbr_session_holdtime(struct vty *, const char *, struct in_addr, long);
int	 ldp_vty_af_session_holdtime(struct vty *, const char *, long);
int	 ldp_vty_interface(struct vty *, const char *, const char *);
int	 ldp_vty_trans_addr(struct vty *, const char *, const char *);
int	 ldp_vty_neighbor_targeted(struct vty *, const char *, const char *);
int	 ldp_vty_label_advertise(struct vty *, const char *, const char *, const char *);
int	 ldp_vty_label_allocate(struct vty *, const char *, const char *, const char *);
int	 ldp_vty_label_expnull(struct vty *, const char *, const char *);
int	 ldp_vty_label_accept(struct vty *, const char *, const char *, const char *);
int	 ldp_vty_ttl_security(struct vty *, const char *);
int	 ldp_vty_router_id(struct vty *, const char *, struct in_addr);
int	 ldp_vty_ordered_control(struct vty *, const char *);
int	 ldp_vty_wait_for_sync_interval(struct vty *, const char *, long);
int	 ldp_vty_ds_cisco_interop(struct vty *, const char *);
int	 ldp_vty_trans_pref_ipv4(struct vty *, const char *);
int	 ldp_vty_neighbor_password(struct vty *, const char *, struct in_addr, const char *);
int	 ldp_vty_neighbor_ttl_security(struct vty *, const char *, struct in_addr, const char *);
int	 ldp_vty_l2vpn(struct vty *, const char *, const char *);
int	 ldp_vty_l2vpn_bridge(struct vty *, const char *, const char *);
int	 ldp_vty_l2vpn_mtu(struct vty *, const char *, long);
int	 ldp_vty_l2vpn_pwtype(struct vty *, const char *, const char *);
int	 ldp_vty_l2vpn_interface(struct vty *, const char *, const char *);
int	 ldp_vty_l2vpn_pseudowire(struct vty *, const char *, const char *);
int	 ldp_vty_l2vpn_pw_cword(struct vty *, const char *, const char *);
int	 ldp_vty_l2vpn_pw_nbr_addr(struct vty *, const char *, const char *);
int	 ldp_vty_l2vpn_pw_nbr_id(struct vty *, const char *, struct in_addr);
int	 ldp_vty_l2vpn_pw_pwid(struct vty *, const char *, long);
int	 ldp_vty_l2vpn_pw_pwstatus(struct vty *, const char *);
int	 ldp_vty_clear_nbr(struct vty *, const char *);
int	 ldp_vty_debug(struct vty *, const char *, const char *, const char *, const char *);
int	 ldp_vty_show_binding(struct vty *, const char *, const char *, int,
	    const char *, unsigned long, unsigned long, const char *, const char *);
int	 ldp_vty_show_discovery(struct vty *, const char *, const char *, const char *);
int	 ldp_vty_show_interface(struct vty *, const char *, const char *);
int	 ldp_vty_show_capabilities(struct vty *, const char *);
int	 ldp_vty_show_neighbor(struct vty *, const char *, int, const char *, const char *);
int	 ldp_vty_show_ldp_sync(struct vty *, const char *);
int	 ldp_vty_show_atom_binding(struct vty *, const char *, unsigned long,
	    unsigned long, const char *);
int	 ldp_vty_show_atom_vc(struct vty *, const char *, const char *,
	    const char *, const char *);
int	 ldp_vty_show_debugging(struct vty *);

void	 ldp_vty_init(void);

#endif	/* _LDP_VTY_H_ */