diff options
author | Gaurav Goyal <gaurav.goyal@4rf.com> | 2021-03-11 01:49:12 +0100 |
---|---|---|
committer | Reuben Dowle <reuben.dowle@4rf.com> | 2021-03-17 04:56:46 +0100 |
commit | 083bbfaebfe094d52e5125172aedd12c6ac4a958 (patch) | |
tree | 720ca75fdd0d110880d99d75a208fb376543dda4 /nhrpd/nhrpd.h | |
parent | nhrpd: Retry IPSec if NHRP is repeatedly failing (diff) | |
download | frr-083bbfaebfe094d52e5125172aedd12c6ac4a958.tar.xz frr-083bbfaebfe094d52e5125172aedd12c6ac4a958.zip |
nhrpd: Close IPSec connection when tunnel protection removed
Signed-off-by: Reuben Dowle <reuben.dowle@4rf.com>
Diffstat (limited to 'nhrpd/nhrpd.h')
-rw-r--r-- | nhrpd/nhrpd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nhrpd/nhrpd.h b/nhrpd/nhrpd.h index 37a9e338c..66ca1eabf 100644 --- a/nhrpd/nhrpd.h +++ b/nhrpd/nhrpd.h @@ -400,7 +400,8 @@ void nhrp_vc_reset(void); void vici_init(void); void vici_terminate(void); -void vici_terminate_vc(unsigned int ike_id); +void vici_terminate_vc_by_profile_name(char *profile_name); +void vici_terminate_vc_by_ike_id(unsigned int ike_id); void vici_request_vc(const char *profile, union sockunion *src, union sockunion *dst, int prio); |