mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-06 00:00:47 -04:00
Invert check to delete unestablished IKE_SAs to not delete them once established
This commit is contained in:
parent
320e98c2ac
commit
8ce567e69e
@ -76,8 +76,8 @@ METHOD(job_t, execute, void,
|
||||
}
|
||||
else
|
||||
{
|
||||
/* destroy only if not ESTABLISHED */
|
||||
if (ike_sa->get_state(ike_sa) == IKE_ESTABLISHED)
|
||||
/* destroy IKE_SA did not complete connecting phase */
|
||||
if (ike_sa->get_state(ike_sa) != IKE_CONNECTING)
|
||||
{
|
||||
charon->ike_sa_manager->checkin(charon->ike_sa_manager, ike_sa);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user