]> git.proxmox.com Git - mirror_frr.git/blob - bfdd/bfdd_nb.h
Merge pull request #6321 from ton31337/fix/configuration_for_labeled_in_place
[mirror_frr.git] / bfdd / bfdd_nb.h
1 /*
2 * BFD daemon northbound implementation.
3 *
4 * Copyright (C) 2019 Network Device Education Foundation, Inc. ("NetDEF")
5 * Rafael Zalamena
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 * 02110-1301 USA.
21 */
22
23 #ifndef _FRR_BFDD_NB_H_
24 #define _FRR_BFDD_NB_H_
25
26 extern const struct frr_yang_module_info frr_bfdd_info;
27
28 /* Mandatory callbacks. */
29 int bfdd_bfd_create(struct nb_cb_create_args *args);
30 int bfdd_bfd_destroy(struct nb_cb_destroy_args *args);
31 int bfdd_bfd_profile_create(struct nb_cb_create_args *args);
32 int bfdd_bfd_profile_destroy(struct nb_cb_destroy_args *args);
33 int bfdd_bfd_profile_detection_multiplier_modify(
34 struct nb_cb_modify_args *args);
35 int bfdd_bfd_profile_desired_transmission_interval_modify(
36 struct nb_cb_modify_args *args);
37 int bfdd_bfd_profile_required_receive_interval_modify(
38 struct nb_cb_modify_args *args);
39 int bfdd_bfd_profile_administrative_down_modify(struct nb_cb_modify_args *args);
40 int bfdd_bfd_profile_echo_mode_modify(struct nb_cb_modify_args *args);
41 int bfdd_bfd_profile_desired_echo_transmission_interval_modify(
42 struct nb_cb_modify_args *args);
43 int bfdd_bfd_sessions_single_hop_create(struct nb_cb_create_args *args);
44 int bfdd_bfd_sessions_single_hop_destroy(struct nb_cb_destroy_args *args);
45 const void *
46 bfdd_bfd_sessions_single_hop_get_next(struct nb_cb_get_next_args *args);
47 int bfdd_bfd_sessions_single_hop_get_keys(struct nb_cb_get_keys_args *args);
48 const void *
49 bfdd_bfd_sessions_single_hop_lookup_entry(struct nb_cb_lookup_entry_args *args);
50 int bfdd_bfd_sessions_single_hop_source_addr_modify(
51 struct nb_cb_modify_args *args);
52 int bfdd_bfd_sessions_single_hop_source_addr_destroy(
53 struct nb_cb_destroy_args *args);
54 int bfdd_bfd_sessions_single_hop_profile_modify(struct nb_cb_modify_args *args);
55 int bfdd_bfd_sessions_single_hop_profile_destroy(
56 struct nb_cb_destroy_args *args);
57 int bfdd_bfd_sessions_single_hop_detection_multiplier_modify(
58 struct nb_cb_modify_args *args);
59 int bfdd_bfd_sessions_single_hop_desired_transmission_interval_modify(
60 struct nb_cb_modify_args *args);
61 int bfdd_bfd_sessions_single_hop_required_receive_interval_modify(
62 struct nb_cb_modify_args *args);
63 int bfdd_bfd_sessions_single_hop_administrative_down_modify(
64 struct nb_cb_modify_args *args);
65 int bfdd_bfd_sessions_single_hop_echo_mode_modify(
66 struct nb_cb_modify_args *args);
67 int bfdd_bfd_sessions_single_hop_desired_echo_transmission_interval_modify(
68 struct nb_cb_modify_args *args);
69 struct yang_data *
70 bfdd_bfd_sessions_single_hop_stats_local_discriminator_get_elem(
71 struct nb_cb_get_elem_args *args);
72 struct yang_data *bfdd_bfd_sessions_single_hop_stats_local_state_get_elem(
73 struct nb_cb_get_elem_args *args);
74 struct yang_data *bfdd_bfd_sessions_single_hop_stats_local_diagnostic_get_elem(
75 struct nb_cb_get_elem_args *args);
76 struct yang_data *bfdd_bfd_sessions_single_hop_stats_local_multiplier_get_elem(
77 struct nb_cb_get_elem_args *args);
78 struct yang_data *
79 bfdd_bfd_sessions_single_hop_stats_remote_discriminator_get_elem(
80 struct nb_cb_get_elem_args *args);
81 struct yang_data *bfdd_bfd_sessions_single_hop_stats_remote_state_get_elem(
82 struct nb_cb_get_elem_args *args);
83 struct yang_data *bfdd_bfd_sessions_single_hop_stats_remote_diagnostic_get_elem(
84 struct nb_cb_get_elem_args *args);
85 struct yang_data *bfdd_bfd_sessions_single_hop_stats_remote_multiplier_get_elem(
86 struct nb_cb_get_elem_args *args);
87 struct yang_data *
88 bfdd_bfd_sessions_single_hop_stats_negotiated_transmission_interval_get_elem(
89 struct nb_cb_get_elem_args *args);
90 struct yang_data *
91 bfdd_bfd_sessions_single_hop_stats_negotiated_receive_interval_get_elem(
92 struct nb_cb_get_elem_args *args);
93 struct yang_data *bfdd_bfd_sessions_single_hop_stats_detection_mode_get_elem(
94 struct nb_cb_get_elem_args *args);
95 struct yang_data *bfdd_bfd_sessions_single_hop_stats_last_down_time_get_elem(
96 struct nb_cb_get_elem_args *args);
97 struct yang_data *bfdd_bfd_sessions_single_hop_stats_last_up_time_get_elem(
98 struct nb_cb_get_elem_args *args);
99 struct yang_data *
100 bfdd_bfd_sessions_single_hop_stats_session_down_count_get_elem(
101 struct nb_cb_get_elem_args *args);
102 struct yang_data *bfdd_bfd_sessions_single_hop_stats_session_up_count_get_elem(
103 struct nb_cb_get_elem_args *args);
104 struct yang_data *
105 bfdd_bfd_sessions_single_hop_stats_control_packet_input_count_get_elem(
106 struct nb_cb_get_elem_args *args);
107 struct yang_data *
108 bfdd_bfd_sessions_single_hop_stats_control_packet_output_count_get_elem(
109 struct nb_cb_get_elem_args *args);
110 struct yang_data *
111 bfdd_bfd_sessions_single_hop_stats_negotiated_echo_transmission_interval_get_elem(
112 struct nb_cb_get_elem_args *args);
113 struct yang_data *
114 bfdd_bfd_sessions_single_hop_stats_echo_packet_input_count_get_elem(
115 struct nb_cb_get_elem_args *args);
116 struct yang_data *
117 bfdd_bfd_sessions_single_hop_stats_echo_packet_output_count_get_elem(
118 struct nb_cb_get_elem_args *args);
119 int bfdd_bfd_sessions_multi_hop_create(struct nb_cb_create_args *args);
120 int bfdd_bfd_sessions_multi_hop_destroy(struct nb_cb_destroy_args *args);
121 const void *
122 bfdd_bfd_sessions_multi_hop_get_next(struct nb_cb_get_next_args *args);
123 int bfdd_bfd_sessions_multi_hop_get_keys(struct nb_cb_get_keys_args *args);
124 const void *
125 bfdd_bfd_sessions_multi_hop_lookup_entry(struct nb_cb_lookup_entry_args *args);
126 int bfdd_bfd_sessions_multi_hop_detection_multiplier_modify(
127 struct nb_cb_modify_args *args);
128 int bfdd_bfd_sessions_multi_hop_desired_transmission_interval_modify(
129 struct nb_cb_modify_args *args);
130 int bfdd_bfd_sessions_multi_hop_required_receive_interval_modify(
131 struct nb_cb_modify_args *args);
132 int bfdd_bfd_sessions_multi_hop_administrative_down_modify(
133 struct nb_cb_modify_args *args);
134 struct yang_data *
135 bfdd_bfd_sessions_multi_hop_stats_local_discriminator_get_elem(
136 struct nb_cb_get_elem_args *args);
137 struct yang_data *bfdd_bfd_sessions_multi_hop_stats_local_state_get_elem(
138 struct nb_cb_get_elem_args *args);
139 struct yang_data *bfdd_bfd_sessions_multi_hop_stats_local_diagnostic_get_elem(
140 struct nb_cb_get_elem_args *args);
141 struct yang_data *bfdd_bfd_sessions_multi_hop_stats_local_multiplier_get_elem(
142 struct nb_cb_get_elem_args *args);
143 struct yang_data *
144 bfdd_bfd_sessions_multi_hop_stats_remote_discriminator_get_elem(
145 struct nb_cb_get_elem_args *args);
146 struct yang_data *bfdd_bfd_sessions_multi_hop_stats_remote_state_get_elem(
147 struct nb_cb_get_elem_args *args);
148 struct yang_data *bfdd_bfd_sessions_multi_hop_stats_remote_diagnostic_get_elem(
149 struct nb_cb_get_elem_args *args);
150 struct yang_data *bfdd_bfd_sessions_multi_hop_stats_remote_multiplier_get_elem(
151 struct nb_cb_get_elem_args *args);
152 struct yang_data *
153 bfdd_bfd_sessions_multi_hop_stats_negotiated_transmission_interval_get_elem(
154 struct nb_cb_get_elem_args *args);
155 struct yang_data *
156 bfdd_bfd_sessions_multi_hop_stats_negotiated_receive_interval_get_elem(
157 struct nb_cb_get_elem_args *args);
158 struct yang_data *bfdd_bfd_sessions_multi_hop_stats_detection_mode_get_elem(
159 struct nb_cb_get_elem_args *args);
160 struct yang_data *bfdd_bfd_sessions_multi_hop_stats_last_down_time_get_elem(
161 struct nb_cb_get_elem_args *args);
162 struct yang_data *bfdd_bfd_sessions_multi_hop_stats_last_up_time_get_elem(
163 struct nb_cb_get_elem_args *args);
164 struct yang_data *bfdd_bfd_sessions_multi_hop_stats_session_down_count_get_elem(
165 struct nb_cb_get_elem_args *args);
166 struct yang_data *bfdd_bfd_sessions_multi_hop_stats_session_up_count_get_elem(
167 struct nb_cb_get_elem_args *args);
168 struct yang_data *
169 bfdd_bfd_sessions_multi_hop_stats_control_packet_input_count_get_elem(
170 struct nb_cb_get_elem_args *args);
171 struct yang_data *
172 bfdd_bfd_sessions_multi_hop_stats_control_packet_output_count_get_elem(
173 struct nb_cb_get_elem_args *args);
174 struct yang_data *
175 bfdd_bfd_sessions_multi_hop_stats_negotiated_echo_transmission_interval_get_elem(
176 struct nb_cb_get_elem_args *args);
177 struct yang_data *
178 bfdd_bfd_sessions_multi_hop_stats_echo_packet_input_count_get_elem(
179 struct nb_cb_get_elem_args *args);
180 struct yang_data *
181 bfdd_bfd_sessions_multi_hop_stats_echo_packet_output_count_get_elem(
182 struct nb_cb_get_elem_args *args);
183
184 /* Optional 'cli_show' callbacks. */
185 void bfd_cli_show_header(struct vty *vty, struct lyd_node *dnode,
186 bool show_defaults);
187 void bfd_cli_show_header_end(struct vty *vty, struct lyd_node *dnode);
188 void bfd_cli_show_single_hop_peer(struct vty *vty, struct lyd_node *dnode,
189 bool show_defaults);
190 void bfd_cli_show_multi_hop_peer(struct vty *vty, struct lyd_node *dnode,
191 bool show_defaults);
192 void bfd_cli_show_peer_end(struct vty *vty, struct lyd_node *dnode);
193 void bfd_cli_show_mult(struct vty *vty, struct lyd_node *dnode,
194 bool show_defaults);
195 void bfd_cli_show_tx(struct vty *vty, struct lyd_node *dnode,
196 bool show_defaults);
197 void bfd_cli_show_rx(struct vty *vty, struct lyd_node *dnode,
198 bool show_defaults);
199 void bfd_cli_show_shutdown(struct vty *vty, struct lyd_node *dnode,
200 bool show_defaults);
201 void bfd_cli_show_echo(struct vty *vty, struct lyd_node *dnode,
202 bool show_defaults);
203 void bfd_cli_show_echo_interval(struct vty *vty, struct lyd_node *dnode,
204 bool show_defaults);
205 void bfd_cli_show_profile(struct vty *vty, struct lyd_node *dnode,
206 bool show_defaults);
207 void bfd_cli_peer_profile_show(struct vty *vty, struct lyd_node *dnode,
208 bool show_defaults);
209
210 #endif /* _FRR_BFDD_NB_H_ */