]> git.proxmox.com Git - mirror_frr.git/blobdiff - pathd/path_nb.h
Merge pull request #13088 from donaldsharp/pim_use_after
[mirror_frr.git] / pathd / path_nb.h
index 3a0b3863ce7b0609e7efad458af3d602dd15e040..21876d788303c2816136e3dbe7e1abab952b4279 100644 (file)
@@ -1,19 +1,6 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
 /*
  * Copyright (C) 2020  NetDEF, Inc.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation; either version 2 of the License, or (at your option)
- * any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; see the file COPYING; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #ifndef _FRR_PATH_NB_H_
@@ -43,6 +30,8 @@ int pathd_srte_segment_list_segment_nai_destroy(
        struct nb_cb_destroy_args *args);
 void pathd_srte_segment_list_segment_nai_apply_finish(
        struct nb_cb_apply_finish_args *args);
+int pathd_srte_segment_list_segment_sid_value_destroy(
+       struct nb_cb_destroy_args *args);
 int pathd_srte_policy_create(struct nb_cb_create_args *args);
 int pathd_srte_policy_destroy(struct nb_cb_destroy_args *args);
 const void *pathd_srte_policy_get_next(struct nb_cb_get_next_args *args);
@@ -108,19 +97,26 @@ int pathd_srte_policy_candidate_path_segment_list_name_destroy(
 void pathd_apply_finish(struct nb_cb_apply_finish_args *args);
 
 /* Optional 'cli_show' callbacks. */
-void cli_show_srte_segment_list(struct vty *vty, struct lyd_node *dnode,
+void cli_show_srte_segment_list(struct vty *vty, const struct lyd_node *dnode,
                                bool show_defaults);
-void cli_show_srte_segment_list_segment(struct vty *vty, struct lyd_node *dnode,
+void cli_show_srte_segment_list_end(struct vty *vty,
+                                   const struct lyd_node *dnode);
+void cli_show_srte_segment_list_segment(struct vty *vty,
+                                       const struct lyd_node *dnode,
                                        bool show_defaults);
-void cli_show_srte_policy(struct vty *vty, struct lyd_node *dnode,
+void cli_show_srte_policy(struct vty *vty, const struct lyd_node *dnode,
                          bool show_defaults);
-void cli_show_srte_policy_name(struct vty *vty, struct lyd_node *dnode,
+void cli_show_srte_policy_end(struct vty *vty, const struct lyd_node *dnode);
+void cli_show_srte_policy_name(struct vty *vty, const struct lyd_node *dnode,
                               bool show_defaults);
-void cli_show_srte_policy_binding_sid(struct vty *vty, struct lyd_node *dnode,
+void cli_show_srte_policy_binding_sid(struct vty *vty,
+                                     const struct lyd_node *dnode,
                                      bool show_defaults);
 void cli_show_srte_policy_candidate_path(struct vty *vty,
-                                        struct lyd_node *dnode,
+                                        const struct lyd_node *dnode,
                                         bool show_defaults);
+void cli_show_srte_policy_candidate_path_end(struct vty *vty,
+                                            const struct lyd_node *dnode);
 
 /* Utility functions */
 typedef void (*of_pref_cp_t)(enum objfun_type type, void *arg);