]> git.proxmox.com Git - mirror_frr.git/blob - ripd/rip_nb.h
Merge pull request #13149 from pushpasis/mgmt_cleanup_zlog
[mirror_frr.git] / ripd / rip_nb.h
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Copyright (C) 2018 NetDEF, Inc.
4 * Renato Westphal
5 */
6
7 #ifndef _FRR_RIP_NB_H_
8 #define _FRR_RIP_NB_H_
9
10 extern const struct frr_yang_module_info frr_ripd_info;
11
12 /* Mandatory callbacks. */
13 int ripd_instance_create(struct nb_cb_create_args *args);
14 int ripd_instance_destroy(struct nb_cb_destroy_args *args);
15 const void *ripd_instance_get_next(struct nb_cb_get_next_args *args);
16 int ripd_instance_get_keys(struct nb_cb_get_keys_args *args);
17 const void *ripd_instance_lookup_entry(struct nb_cb_lookup_entry_args *args);
18 int ripd_instance_allow_ecmp_modify(struct nb_cb_modify_args *args);
19 int ripd_instance_default_information_originate_modify(
20 struct nb_cb_modify_args *args);
21 int ripd_instance_default_metric_modify(struct nb_cb_modify_args *args);
22 int ripd_instance_distance_default_modify(struct nb_cb_modify_args *args);
23 int ripd_instance_distance_source_create(struct nb_cb_create_args *args);
24 int ripd_instance_distance_source_destroy(struct nb_cb_destroy_args *args);
25 int ripd_instance_distance_source_distance_modify(
26 struct nb_cb_modify_args *args);
27 int ripd_instance_distance_source_access_list_modify(
28 struct nb_cb_modify_args *args);
29 int ripd_instance_distance_source_access_list_destroy(
30 struct nb_cb_destroy_args *args);
31 int ripd_instance_explicit_neighbor_create(struct nb_cb_create_args *args);
32 int ripd_instance_explicit_neighbor_destroy(struct nb_cb_destroy_args *args);
33 int ripd_instance_network_create(struct nb_cb_create_args *args);
34 int ripd_instance_network_destroy(struct nb_cb_destroy_args *args);
35 int ripd_instance_interface_create(struct nb_cb_create_args *args);
36 int ripd_instance_interface_destroy(struct nb_cb_destroy_args *args);
37 int ripd_instance_offset_list_create(struct nb_cb_create_args *args);
38 int ripd_instance_offset_list_destroy(struct nb_cb_destroy_args *args);
39 int ripd_instance_offset_list_access_list_modify(
40 struct nb_cb_modify_args *args);
41 int ripd_instance_offset_list_metric_modify(struct nb_cb_modify_args *args);
42 int ripd_instance_passive_default_modify(struct nb_cb_modify_args *args);
43 int ripd_instance_passive_interface_create(struct nb_cb_create_args *args);
44 int ripd_instance_passive_interface_destroy(struct nb_cb_destroy_args *args);
45 int ripd_instance_non_passive_interface_create(struct nb_cb_create_args *args);
46 int ripd_instance_non_passive_interface_destroy(
47 struct nb_cb_destroy_args *args);
48 int ripd_instance_redistribute_create(struct nb_cb_create_args *args);
49 int ripd_instance_redistribute_destroy(struct nb_cb_destroy_args *args);
50 int ripd_instance_redistribute_route_map_modify(struct nb_cb_modify_args *args);
51 int ripd_instance_redistribute_route_map_destroy(
52 struct nb_cb_destroy_args *args);
53 int ripd_instance_redistribute_metric_modify(struct nb_cb_modify_args *args);
54 int ripd_instance_redistribute_metric_destroy(struct nb_cb_destroy_args *args);
55 int ripd_instance_if_route_maps_if_route_map_create(
56 struct nb_cb_create_args *args);
57 int ripd_instance_if_route_maps_if_route_map_destroy(
58 struct nb_cb_destroy_args *args);
59 int ripd_instance_if_route_maps_if_route_map_in_route_map_modify(
60 struct nb_cb_modify_args *args);
61 int ripd_instance_if_route_maps_if_route_map_in_route_map_destroy(
62 struct nb_cb_destroy_args *args);
63 int ripd_instance_if_route_maps_if_route_map_out_route_map_modify(
64 struct nb_cb_modify_args *args);
65 int ripd_instance_if_route_maps_if_route_map_out_route_map_destroy(
66 struct nb_cb_destroy_args *args);
67 int ripd_instance_static_route_create(struct nb_cb_create_args *args);
68 int ripd_instance_static_route_destroy(struct nb_cb_destroy_args *args);
69 int ripd_instance_timers_flush_interval_modify(struct nb_cb_modify_args *args);
70 int ripd_instance_timers_holddown_interval_modify(
71 struct nb_cb_modify_args *args);
72 int ripd_instance_timers_update_interval_modify(struct nb_cb_modify_args *args);
73 int ripd_instance_version_receive_modify(struct nb_cb_modify_args *args);
74 int ripd_instance_version_send_modify(struct nb_cb_modify_args *args);
75 const void *ripd_instance_state_neighbors_neighbor_get_next(
76 struct nb_cb_get_next_args *args);
77 int ripd_instance_state_neighbors_neighbor_get_keys(
78 struct nb_cb_get_keys_args *args);
79 const void *ripd_instance_state_neighbors_neighbor_lookup_entry(
80 struct nb_cb_lookup_entry_args *args);
81 struct yang_data *ripd_instance_state_neighbors_neighbor_address_get_elem(
82 struct nb_cb_get_elem_args *args);
83 struct yang_data *ripd_instance_state_neighbors_neighbor_last_update_get_elem(
84 struct nb_cb_get_elem_args *args);
85 struct yang_data *
86 ripd_instance_state_neighbors_neighbor_bad_packets_rcvd_get_elem(
87 struct nb_cb_get_elem_args *args);
88 struct yang_data *
89 ripd_instance_state_neighbors_neighbor_bad_routes_rcvd_get_elem(
90 struct nb_cb_get_elem_args *args);
91 const void *
92 ripd_instance_state_routes_route_get_next(struct nb_cb_get_next_args *args);
93 int ripd_instance_state_routes_route_get_keys(struct nb_cb_get_keys_args *args);
94 const void *ripd_instance_state_routes_route_lookup_entry(
95 struct nb_cb_lookup_entry_args *args);
96 struct yang_data *ripd_instance_state_routes_route_prefix_get_elem(
97 struct nb_cb_get_elem_args *args);
98 struct yang_data *ripd_instance_state_routes_route_next_hop_get_elem(
99 struct nb_cb_get_elem_args *args);
100 struct yang_data *ripd_instance_state_routes_route_interface_get_elem(
101 struct nb_cb_get_elem_args *args);
102 struct yang_data *ripd_instance_state_routes_route_metric_get_elem(
103 struct nb_cb_get_elem_args *args);
104 const void *ripd_instance_state_routes_route_nexthops_nexthop_get_next(
105 struct nb_cb_get_next_args *args);
106 struct yang_data *
107 ripd_instance_state_routes_route_nexthops_nexthop_nh_type_get_elem(
108 struct nb_cb_get_elem_args *args);
109 struct yang_data *
110 ripd_instance_state_routes_route_nexthops_nexthop_protocol_get_elem(
111 struct nb_cb_get_elem_args *args);
112 struct yang_data *
113 ripd_instance_state_routes_route_nexthops_nexthop_rip_type_get_elem(
114 struct nb_cb_get_elem_args *args);
115 struct yang_data *
116 ripd_instance_state_routes_route_nexthops_nexthop_gateway_get_elem(
117 struct nb_cb_get_elem_args *args);
118 struct yang_data *
119 ripd_instance_state_routes_route_nexthops_nexthop_interface_get_elem(
120 struct nb_cb_get_elem_args *args);
121 struct yang_data *
122 ripd_instance_state_routes_route_nexthops_nexthop_from_get_elem(
123 struct nb_cb_get_elem_args *args);
124 struct yang_data *
125 ripd_instance_state_routes_route_nexthops_nexthop_tag_get_elem(
126 struct nb_cb_get_elem_args *args);
127 struct yang_data *
128 ripd_instance_state_routes_route_nexthops_nexthop_external_metric_get_elem(
129 struct nb_cb_get_elem_args *args);
130 struct yang_data *
131 ripd_instance_state_routes_route_nexthops_nexthop_expire_time_get_elem(
132 struct nb_cb_get_elem_args *args);
133 struct yang_data *ripd_instance_state_routes_route_metric_get_elem(
134 struct nb_cb_get_elem_args *args);
135 int clear_rip_route_rpc(struct nb_cb_rpc_args *args);
136 int lib_interface_rip_split_horizon_modify(struct nb_cb_modify_args *args);
137 int lib_interface_rip_v2_broadcast_modify(struct nb_cb_modify_args *args);
138 int lib_interface_rip_version_receive_modify(struct nb_cb_modify_args *args);
139 int lib_interface_rip_version_send_modify(struct nb_cb_modify_args *args);
140 int lib_interface_rip_authentication_scheme_mode_modify(
141 struct nb_cb_modify_args *args);
142 int lib_interface_rip_authentication_scheme_md5_auth_length_modify(
143 struct nb_cb_modify_args *args);
144 int lib_interface_rip_authentication_scheme_md5_auth_length_destroy(
145 struct nb_cb_destroy_args *args);
146 int lib_interface_rip_authentication_password_modify(
147 struct nb_cb_modify_args *args);
148 int lib_interface_rip_authentication_password_destroy(
149 struct nb_cb_destroy_args *args);
150 int lib_interface_rip_authentication_key_chain_modify(
151 struct nb_cb_modify_args *args);
152 int lib_interface_rip_authentication_key_chain_destroy(
153 struct nb_cb_destroy_args *args);
154
155 /* Optional 'apply_finish' callbacks. */
156 void ripd_instance_redistribute_apply_finish(
157 struct nb_cb_apply_finish_args *args);
158 void ripd_instance_timers_apply_finish(struct nb_cb_apply_finish_args *args);
159
160 /* Optional 'cli_show' callbacks. */
161 void cli_show_router_rip(struct vty *vty, const struct lyd_node *dnode,
162 bool show_defaults);
163 void cli_show_rip_allow_ecmp(struct vty *vty, const struct lyd_node *dnode,
164 bool show_defaults);
165 void cli_show_rip_default_information_originate(struct vty *vty,
166 const struct lyd_node *dnode,
167 bool show_defaults);
168 void cli_show_rip_default_metric(struct vty *vty, const struct lyd_node *dnode,
169 bool show_defaults);
170 void cli_show_rip_distance(struct vty *vty, const struct lyd_node *dnode,
171 bool show_defaults);
172 void cli_show_rip_distance_source(struct vty *vty, const struct lyd_node *dnode,
173 bool show_defaults);
174 void cli_show_rip_neighbor(struct vty *vty, const struct lyd_node *dnode,
175 bool show_defaults);
176 void cli_show_rip_network_prefix(struct vty *vty, const struct lyd_node *dnode,
177 bool show_defaults);
178 void cli_show_rip_network_interface(struct vty *vty,
179 const struct lyd_node *dnode,
180 bool show_defaults);
181 void cli_show_rip_offset_list(struct vty *vty, const struct lyd_node *dnode,
182 bool show_defaults);
183 void cli_show_rip_passive_default(struct vty *vty, const struct lyd_node *dnode,
184 bool show_defaults);
185 void cli_show_rip_passive_interface(struct vty *vty,
186 const struct lyd_node *dnode,
187 bool show_defaults);
188 void cli_show_rip_non_passive_interface(struct vty *vty,
189 const struct lyd_node *dnode,
190 bool show_defaults);
191 void cli_show_rip_redistribute(struct vty *vty, const struct lyd_node *dnode,
192 bool show_defaults);
193 void cli_show_rip_route(struct vty *vty, const struct lyd_node *dnode,
194 bool show_defaults);
195 void cli_show_rip_timers(struct vty *vty, const struct lyd_node *dnode,
196 bool show_defaults);
197 void cli_show_rip_version(struct vty *vty, const struct lyd_node *dnode,
198 bool show_defaults);
199 void cli_show_ip_rip_split_horizon(struct vty *vty,
200 const struct lyd_node *dnode,
201 bool show_defaults);
202 void cli_show_ip_rip_v2_broadcast(struct vty *vty, const struct lyd_node *dnode,
203 bool show_defaults);
204 void cli_show_ip_rip_receive_version(struct vty *vty,
205 const struct lyd_node *dnode,
206 bool show_defaults);
207 void cli_show_ip_rip_send_version(struct vty *vty, const struct lyd_node *dnode,
208 bool show_defaults);
209 void cli_show_ip_rip_authentication_scheme(struct vty *vty,
210 const struct lyd_node *dnode,
211 bool show_defaults);
212 void cli_show_ip_rip_authentication_string(struct vty *vty,
213 const struct lyd_node *dnode,
214 bool show_defaults);
215 void cli_show_ip_rip_authentication_key_chain(struct vty *vty,
216 const struct lyd_node *dnode,
217 bool show_defaults);
218
219 /* Notifications. */
220 extern void ripd_notif_send_auth_type_failure(const char *ifname);
221 extern void ripd_notif_send_auth_failure(const char *ifname);
222
223 #endif /* _FRR_RIP_NB_H_ */