diff options
| author | paul <paul> | 2004-10-13 05:06:08 +0000 | 
|---|---|---|
| committer | paul <paul> | 2004-10-13 05:06:08 +0000 | 
| commit | fd79ac918b8feaacebe9719adaac97dffb69137a (patch) | |
| tree | d0665eb68e60da9d6e364414cdb61830f19f33d3 /bgpd/bgp_clist.h | |
| parent | 39db97e4e02eae08a1e18528367b6e9b07eb6a93 (diff) | |
2004-10-13 Paul Jakma <paul@dishone.st>
	* (global) more const'ification and fixups of types to clean up code.
	* bgp_mplsvpn.{c,h}: (str2tag) fix abuse. Still not perfect,
          should use something like the VTY_GET_INTEGER macro, but without
          the vty_out bits..
        * bgp_routemap.c: (set_aggregator_as) use VTY_GET_INTEGER_RANGE
          (no_set_aggregator_as) ditto.
        * bgpd.c: (peer_uptime) fix unlikely bug, where no buffer is
          returned, add comments about troublesome return value.
Diffstat (limited to 'bgpd/bgp_clist.h')
| -rw-r--r-- | bgpd/bgp_clist.h | 20 | 
1 files changed, 11 insertions, 9 deletions
diff --git a/bgpd/bgp_clist.h b/bgpd/bgp_clist.h index ffc707c284..11db2d712d 100644 --- a/bgpd/bgp_clist.h +++ b/bgpd/bgp_clist.h @@ -121,22 +121,24 @@ extern struct community_list_handler *bgp_clist;  /* Prototypes.  */  struct community_list_handler *community_list_init (); -int community_list_set (struct community_list_handler *ch, -			char *name, char *str, int direct, int style); -int community_list_unset (struct community_list_handler *ch, -			  char *name, char *str, int direct, int style); -int extcommunity_list_set (struct community_list_handler *ch, -			   char *name, char *str, int direct, int style); -int extcommunity_list_unset (struct community_list_handler *ch, -			     char *name, char *str, int direct, int style); +int community_list_set (struct community_list_handler *ch, const char *name,  +                        const char *str, int direct, int style); +int community_list_unset (struct community_list_handler *ch, const char *name, +                          const char *str, int direct, int style); +int extcommunity_list_set (struct community_list_handler *ch, const char *name, +                           const char *str, int direct, int style); +int extcommunity_list_unset (struct community_list_handler *ch,  +                             const char *name, const char *str,  +                             int direct, int style);  struct community_list_master *  community_list_master_lookup (struct community_list_handler *, int);  struct community_list * -community_list_lookup (struct community_list_handler *, char *, int); +community_list_lookup (struct community_list_handler *, const char *, int);  int community_list_match (struct community *, struct community_list *); +int ecommunity_list_match (struct ecommunity *, struct community_list *);  int community_list_exact_match (struct community *, struct community_list *);  struct community *  community_list_match_delete (struct community *,  | 
