aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2015-10-27 17:27:02 +0100
committerTobias Brunner <tobias@strongswan.org>2016-03-10 11:07:14 +0100
commite19162a50964f394eab891f661963be732817330 (patch)
treebf37772d3abe2cd9e1244345b4327d47e2d62982
parent1b9c1ae018aa176aaf9e1f11503b72cc622ba771 (diff)
downloadstrongswan-e19162a50964f394eab891f661963be732817330.tar.bz2
strongswan-e19162a50964f394eab891f661963be732817330.tar.xz
ike-sa: Add condition to suspend online certificate revocation checks for an IKE_SA
-rw-r--r--src/libcharon/sa/ike_sa.h5
1 files changed, 5 insertions, 0 deletions
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),
};
/**