diff options
author | paul <paul> | 2005-06-28 12:44:16 +0000 |
---|---|---|
committer | paul <paul> | 2005-06-28 12:44:16 +0000 |
commit | 94f2b3923e9663d0355a829f22e4e31cf68ee7b8 (patch) | |
tree | 59c0291a76b1c97fbb089abb479307f19cdfd4c1 /bgpd/bgp_community.h | |
parent | 7cad40007b9714dba65065916ea68577f9d3d6dd (diff) |
2005-06-28 Paul Jakma <paul.jakma@sun.com>
* (global) The great bgpd extern and static'ification.
* bgp_routemap.c: remove unused ROUTE_MATCH_ASPATH_OLD code
(route_set_metric_compile) fix u_int32_t to ULONG_MAX comparison
warnings.
* bgp_route.h: (bgp_process, bgp_withdraw, bgp_update) export these
used by various files which had their own private declarations,
in the case of mplsvpn - incorrect.
Diffstat (limited to 'bgpd/bgp_community.h')
-rw-r--r-- | bgpd/bgp_community.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/bgpd/bgp_community.h b/bgpd/bgp_community.h index 21a94193..aed7f330 100644 --- a/bgpd/bgp_community.h +++ b/bgpd/bgp_community.h @@ -51,23 +51,23 @@ struct community #define com_nthval(X,n) ((X)->val + (n)) /* Prototypes of communities attribute functions. */ -void community_init (); -void community_free (struct community *); -struct community *community_uniq_sort (struct community *); -struct community *community_parse (u_int32_t *, u_short); -struct community *community_intern (struct community *); -void community_unintern (struct community *); -char *community_str (struct community *); -unsigned int community_hash_make (struct community *); -struct community *community_str2com (const char *); -int community_match (const struct community *, const struct community *); -int community_cmp (const struct community *, const struct community *); -struct community *community_merge (struct community *, struct community *); -struct community *community_delete (struct community *, struct community *); -struct community *community_dup (struct community *); -int community_include (struct community *, u_int32_t); -void community_del_val (struct community *, u_int32_t *); -unsigned long community_count (); -struct hash *community_hash (); +extern void community_init (void); +extern void community_free (struct community *); +extern struct community *community_uniq_sort (struct community *); +extern struct community *community_parse (u_int32_t *, u_short); +extern struct community *community_intern (struct community *); +extern void community_unintern (struct community *); +extern char *community_str (struct community *); +extern unsigned int community_hash_make (struct community *); +extern struct community *community_str2com (const char *); +extern int community_match (const struct community *, const struct community *); +extern int community_cmp (const struct community *, const struct community *); +extern struct community *community_merge (struct community *, struct community *); +extern struct community *community_delete (struct community *, struct community *); +extern struct community *community_dup (struct community *); +extern int community_include (struct community *, u_int32_t); +extern void community_del_val (struct community *, u_int32_t *); +extern unsigned long community_count (void); +extern struct hash *community_hash (void); #endif /* _QUAGGA_BGP_COMMUNITY_H */ |