diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2021-11-22 21:26:33 +0200 | 
|---|---|---|
| committer | Donatas Abraitis <donatas.abraitis@gmail.com> | 2021-11-23 13:47:26 +0200 | 
| commit | bc63ba980f51642582ffbade6bfdf66bae5cf89d (patch) | |
| tree | 66593f4479f0a822b82b2c96495db839680f8869 /lib/routemap.c | |
| parent | f7517a8b44a950c0bf6a34b90fb6372b39174473 (diff) | |
bgpd: Add an ability to match ipv6 next-hop by access-list
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
Diffstat (limited to 'lib/routemap.c')
| -rw-r--r-- | lib/routemap.c | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/routemap.c b/lib/routemap.c index 09da095af4..c4651f39a4 100644 --- a/lib/routemap.c +++ b/lib/routemap.c @@ -175,6 +175,22 @@ void route_map_no_match_ip_next_hop_hook(int (*func)(  	rmap_match_set_hook.no_match_ip_next_hop = func;  } +/* match ipv6 next-hop */ +void route_map_match_ipv6_next_hop_hook(int (*func)( +	struct route_map_index *index, const char *command, const char *arg, +	route_map_event_t type, char *errmsg, size_t errmsg_len)) +{ +	rmap_match_set_hook.match_ipv6_next_hop = func; +} + +/* no match ipv6 next-hop */ +void route_map_no_match_ipv6_next_hop_hook(int (*func)( +	struct route_map_index *index, const char *command, const char *arg, +	route_map_event_t type, char *errmsg, size_t errmsg_len)) +{ +	rmap_match_set_hook.no_match_ipv6_next_hop = func; +} +  /* match ip next hop prefix list */  void route_map_match_ip_next_hop_prefix_list_hook(int (*func)(  	struct route_map_index *index, const char *command,  | 
