diff options
Diffstat (limited to 'bgpd/bgp_aspath.c')
-rw-r--r-- | bgpd/bgp_aspath.c | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/bgpd/bgp_aspath.c b/bgpd/bgp_aspath.c index 3c8032f8..a9602d90 100644 --- a/bgpd/bgp_aspath.c +++ b/bgpd/bgp_aspath.c @@ -86,7 +86,7 @@ struct assegment_header }; /* Hash for aspath. This is the top level structure of AS path. */ -struct hash *ashash; +static struct hash *ashash; /* Stream for SNMP. See aspath_snmp_pathseg */ static struct stream *snmp_stream; @@ -501,22 +501,6 @@ aspath_has_as4 (struct aspath *aspath) return 0; } -/* Return number of as numbers in in path */ -unsigned int -aspath_count_numas (struct aspath *aspath) -{ - struct assegment *seg = aspath->segments; - unsigned int num; - - num=0; - while (seg) - { - num += seg->length; - seg = seg->next; - } - return num; -} - /* Convert aspath structure to string expression. */ static char * aspath_make_str_count (struct aspath *as) |