diff options
author | pilot <pilot> | 2008-04-10 11:47:45 +0000 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-05-20 17:10:53 -0700 |
commit | 3625058e21554b41d1b1a23596e8be4328dd0446 (patch) | |
tree | 333262fd7e0c2b8c4efda737acf54f54b183c9a7 /bgpd/bgp_aspath.h | |
parent | 61514d88f16d567902b34281cb40379aa099bf8c (diff) | |
download | quagga-3625058e21554b41d1b1a23596e8be4328dd0446.tar.bz2 quagga-3625058e21554b41d1b1a23596e8be4328dd0446.tar.xz |
+ [bgpd] Added new route-map set statement: "as-path ignore"
Diffstat (limited to 'bgpd/bgp_aspath.h')
-rw-r--r-- | bgpd/bgp_aspath.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bgpd/bgp_aspath.h b/bgpd/bgp_aspath.h index 3bb616f7..d8b41fa9 100644 --- a/bgpd/bgp_aspath.h +++ b/bgpd/bgp_aspath.h @@ -69,6 +69,7 @@ extern struct aspath *aspath_parse (struct stream *, size_t, int); extern struct aspath *aspath_dup (struct aspath *); extern struct aspath *aspath_aggregate (struct aspath *, struct aspath *); extern struct aspath *aspath_prepend (struct aspath *, struct aspath *); +extern struct aspath *aspath_filter_exclude (struct aspath *, struct aspath *); extern struct aspath *aspath_add_seq (struct aspath *, as_t); extern struct aspath *aspath_add_confed_seq (struct aspath *, as_t); extern int aspath_cmp_left (struct aspath *, struct aspath *); @@ -81,7 +82,7 @@ extern void aspath_free (struct aspath *); extern struct aspath *aspath_intern (struct aspath *); extern void aspath_unintern (struct aspath *); extern const char *aspath_print (struct aspath *); -extern void aspath_print_vty (struct vty *, const char *, struct aspath *); +extern void aspath_print_vty (struct vty *, const char *, struct aspath *, const char *); extern void aspath_print_all_vty (struct vty *); extern unsigned int aspath_key_make (void *); extern int aspath_loop_check (struct aspath *, as_t); |