]> git.proxmox.com Git - mirror_frr.git/blobdiff - lib/routemap.h
Merge pull request #5746 from donaldsharp/bgp_sa
[mirror_frr.git] / lib / routemap.h
index f9ad0f64a984fe0e1ba21e5e5904d01ac9a8a9c2..1ffd0525ae66eeec801555e0c7f04cfe19e5a735 100644 (file)
@@ -123,10 +123,13 @@ struct route_map_rule_cmd {
 
        /* Free allocated value by func_compile (). */
        void (*func_free)(void *);
+
+       /** To get the rule key after Compilation **/
+       void *(*func_get_rmap_rule_key)(void *val);
 };
 
 /* Route map apply error. */
-enum {
+enum rmap_compile_rets {
        RMAP_COMPILE_SUCCESS,
 
        /* Route map rule is missing. */
@@ -135,8 +138,6 @@ enum {
        /* Route map rule can't compile */
        RMAP_COMPILE_ERROR,
 
-       /* Route map rule is duplicate */
-       RMAP_DUPLICATE_RULE
 };
 
 /* Route map rule list. */
@@ -220,28 +221,32 @@ extern void route_map_init(void);
 extern void route_map_finish(void);
 
 /* Add match statement to route map. */
-extern int route_map_add_match(struct route_map_index *index,
-                              const char *match_name, const char *match_arg,
-                              route_map_event_t type);
+extern enum rmap_compile_rets route_map_add_match(struct route_map_index *index,
+                                                 const char *match_name,
+                                                 const char *match_arg,
+                                                 route_map_event_t type);
 
 /* Delete specified route match rule. */
-extern int route_map_delete_match(struct route_map_index *index,
-                                 const char *match_name,
-                                 const char *match_arg);
+extern enum rmap_compile_rets
+route_map_delete_match(struct route_map_index *index,
+                      const char *match_name, const char *match_arg,
+                      route_map_event_t type);
 
 extern const char *route_map_get_match_arg(struct route_map_index *index,
                                           const char *match_name);
 
 /* Add route-map set statement to the route map. */
-extern int route_map_add_set(struct route_map_index *index,
-                            const char *set_name, const char *set_arg);
+extern enum rmap_compile_rets route_map_add_set(struct route_map_index *index,
+                                               const char *set_name,
+                                               const char *set_arg);
 
 /* Delete route map set rule. */
-extern int route_map_delete_set(struct route_map_index *index,
-                               const char *set_name, const char *set_arg);
+extern enum rmap_compile_rets
+route_map_delete_set(struct route_map_index *index,
+                    const char *set_name, const char *set_arg);
 
 /* Install rule command to the match list. */
-extern void route_map_install_match(struct route_map_rule_cmd *cmd);
+extern void route_map_install_match(const struct route_map_rule_cmd *cmd);
 
 /*
  * Install rule command to the set list.
@@ -252,7 +257,7 @@ extern void route_map_install_match(struct route_map_rule_cmd *cmd);
  * in the apply command).  See 'set metric' command
  * as it is handled in ripd/ripngd and ospfd.
  */
-extern void route_map_install_set(struct route_map_rule_cmd *cmd);
+extern void route_map_install_set(const struct route_map_rule_cmd *cmd);
 
 /* Lookup route map by name. */
 extern struct route_map *route_map_lookup_by_name(const char *name);