]> git.proxmox.com Git - mirror_frr.git/commitdiff
bgpd: Align bgp_clist.h to our standards
authorDonald Sharp <sharpd@nvidia.com>
Thu, 12 May 2022 13:08:12 +0000 (09:08 -0400)
committerDonald Sharp <sharpd@nvidia.com>
Thu, 12 May 2022 14:20:28 +0000 (10:20 -0400)
bgp_clist.h has function declarations that are
not properly aligned with our standard on how
to do so.  Fix.

Signed-off-by: Donald Sharp <sharpd@nvidia.com>
bgpd/bgp_clist.h

index bb7c1363b2c4726a45429172d7a864e4e3c56143..fb80787618846e8b9623c744a0858702c164607e 100644 (file)
@@ -137,7 +137,7 @@ extern struct community_list_handler *bgp_clist;
 
 /* Prototypes.  */
 extern struct community_list_handler *community_list_init(void);
-extern void community_list_terminate(struct community_list_handler *);
+extern void community_list_terminate(struct community_list_handler *ch);
 
 extern int community_list_set(struct community_list_handler *ch,
                              const char *name, const char *str,
@@ -160,21 +160,24 @@ extern int lcommunity_list_unset(struct community_list_handler *ch,
                                 const char *seq, int direct, int style);
 
 extern struct community_list_master *
-community_list_master_lookup(struct community_list_handler *, int);
+community_list_master_lookup(struct community_list_handler *ch, int master);
 
 extern struct community_list *
 community_list_lookup(struct community_list_handler *c, const char *name,
                      uint32_t name_hash, int master);
 
-extern bool community_list_match(struct community *, struct community_list *);
-extern bool ecommunity_list_match(struct ecommunity *, struct community_list *);
-extern bool lcommunity_list_match(struct lcommunity *, struct community_list *);
-extern bool community_list_exact_match(struct community *,
-                                      struct community_list *);
+extern bool community_list_match(struct community *com,
+                                struct community_list *list);
+extern bool ecommunity_list_match(struct ecommunity *ecom,
+                                 struct community_list *list);
+extern bool lcommunity_list_match(struct lcommunity *lcom,
+                                 struct community_list *list);
+extern bool community_list_exact_match(struct community *com,
+                                      struct community_list *list);
 extern bool lcommunity_list_exact_match(struct lcommunity *lcom,
                                        struct community_list *list);
-extern struct community *community_list_match_delete(struct community *,
-                                                    struct community_list *);
+extern struct community *
+community_list_match_delete(struct community *com, struct community_list *list);
 extern struct lcommunity *
 lcommunity_list_match_delete(struct lcommunity *lcom,
                             struct community_list *list);