diff options
| author | vishaldhingra <vdhingra@vmware.com> | 2018-10-11 10:49:34 -0700 | 
|---|---|---|
| committer | vishaldhingra <vdhingra@vmware.com> | 2018-10-11 10:49:34 -0700 | 
| commit | 7cf16e19c5f3829c6d68cd80cbb490e2fe189694 (patch) | |
| tree | bb6dbf23cba2bfdc6c95712a91193320205d710e /zebra/zebra_routemap.h | |
| parent | 214e5c267998514814fd4d4350e03dababc3886f (diff) | |
zebra: vrf aware routmap is missing in Zebra #2802(Part 4 of 4)
The new cli for show output
Signed-off-by: vishaldhingra vdhingra@vmware.com
Diffstat (limited to 'zebra/zebra_routemap.h')
| -rw-r--r-- | zebra/zebra_routemap.h | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/zebra/zebra_routemap.h b/zebra/zebra_routemap.h index 62ba8de670..a8579e7c6e 100644 --- a/zebra/zebra_routemap.h +++ b/zebra/zebra_routemap.h @@ -25,7 +25,8 @@  #include "lib/routemap.h"  extern void zebra_route_map_init(void); -extern void zebra_routemap_config_write_protocol(struct vty *vty); +extern void zebra_routemap_config_write_protocol(struct vty *vty, +						 struct zebra_vrf *vrf);  extern char *zebra_get_import_table_route_map(afi_t afi, uint32_t table);  extern void zebra_add_import_table_route_map(afi_t afi, const char *rmap_name,  					     uint32_t table); @@ -36,9 +37,8 @@ extern void zebra_route_map_write_delay_timer(struct vty *);  extern route_map_result_t  zebra_import_table_route_map_check(int family, int rib_type, uint8_t instance,  				   const struct prefix *p, -				   struct nexthop *nexthop, -				   vrf_id_t vrf_id, route_tag_t tag, -				   const char *rmap_name); +				   struct nexthop *nexthop, vrf_id_t vrf_id, +				   route_tag_t tag, const char *rmap_name);  extern route_map_result_t  zebra_route_map_check(int family, int rib_type, uint8_t instance,  		      const struct prefix *p, struct nexthop *nexthop,  | 
