From e19162a50964f394eab891f661963be732817330 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Tue, 27 Oct 2015 17:27:02 +0100 Subject: [PATCH] ike-sa: Add condition to suspend online certificate revocation checks for an IKE_SA --- src/libcharon/sa/ike_sa.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/libcharon/sa/ike_sa.h b/src/libcharon/sa/ike_sa.h index 0f47ad31f..836360e3c 100644 --- a/src/libcharon/sa/ike_sa.h +++ b/src/libcharon/sa/ike_sa.h @@ -217,6 +217,11 @@ enum ike_condition_t { * This IKE_SA has been redirected */ COND_REDIRECTED = (1<<11), + + /** + * Online certificate revocation checking is suspended for this IKE_SA + */ + COND_ONLINE_VALIDATION_SUSPENDED = (1<<12), }; /**