Blame SOURCES/0008-make-the-default-max-number-of-state-cookies-7-inste.patch

5b8408
From 623163348f74fc1bd019a676fa24af69dde79654 Mon Sep 17 00:00:00 2001
5b8408
From: Hans Zandbelt <hans.zandbelt@zmartzone.eu>
5b8408
Date: Fri, 3 Aug 2018 21:41:34 +0200
5b8408
Subject: [PATCH 08/11] make the default max number of state cookies 7 instead
5b8408
 of unlimited
5b8408
5b8408
bump to 2.3.8rc1
5b8408
5b8408
Signed-off-by: Hans Zandbelt <hans.zandbelt@zmartzone.eu>
5b8408
(cherry picked from commit 6616372af77df04a9b0b197e759790ecf3f2399a)
5b8408
---
5b8408
 ChangeLog    | 5 ++++-
5b8408
 src/config.c | 2 +-
5b8408
 2 files changed, 5 insertions(+), 2 deletions(-)
5b8408
5b8408
diff --git a/ChangeLog b/ChangeLog
5b8408
index b6ac513..27f45be 100644
5b8408
--- a/ChangeLog
5b8408
+++ b/ChangeLog
5b8408
@@ -1,5 +1,8 @@
5b8408
-08/01/2018
5b8408
+
5b8408
+08/03/2018
5b8408
 - add option to set an upper limit to the number of concurrent state cookies via OIDCStateMaxNumberOfCookies; see #331
5b8408
+- make the default maximum number of parallel state cookies 7 instead of unlimited; see #331
5b8408
+- bump o 2.3.8rc1
5b8408
 
5b8408
 07/06/2018
5b8408
 - abort when string length for remote user name substitution is larger than 255 characters
5b8408
diff --git a/src/config.c b/src/config.c
5b8408
index c793818..6fa6227 100644
5b8408
--- a/src/config.c
5b8408
+++ b/src/config.c
5b8408
@@ -105,7 +105,7 @@
5b8408
 /* timeout in seconds after which state expires */
5b8408
 #define OIDC_DEFAULT_STATE_TIMEOUT 300
5b8408
 /* maximum number of parallel state cookies; 0 means unlimited, until the browser or server gives up */
5b8408
-#define OIDC_DEFAULT_MAX_NUMBER_OF_STATE_COOKIES 0
5b8408
+#define OIDC_DEFAULT_MAX_NUMBER_OF_STATE_COOKIES 7
5b8408
 /* default session inactivity timeout */
5b8408
 #define OIDC_DEFAULT_SESSION_INACTIVITY_TIMEOUT 300
5b8408
 /* default session max duration */
5b8408
-- 
5b8408
2.26.2
5b8408