summaryrefslogtreecommitdiff
path: root/src/sp_config.h
diff options
context:
space:
mode:
authorjvoisin2018-07-13 23:36:06 +0200
committerjvoisin2018-07-13 23:36:06 +0200
commit02afd6c84f5e4f11b1de054f36d7d1da87206def (patch)
tree934b8669e520382ce9776c61197c1391cddeca35 /src/sp_config.h
parent99f9ecae9a5edf5d36f5de62ccf60f9d9146057a (diff)
Yet an other pass of clang-format
Diffstat (limited to 'src/sp_config.h')
-rw-r--r--src/sp_config.h20
1 files changed, 15 insertions, 5 deletions
diff --git a/src/sp_config.h b/src/sp_config.h
index cfc3c8f..d2fa64f 100644
--- a/src/sp_config.h
+++ b/src/sp_config.h
@@ -49,15 +49,25 @@ typedef struct {
49 zend_string *textual_representation; 49 zend_string *textual_representation;
50} sp_config_readonly_exec; 50} sp_config_readonly_exec;
51 51
52typedef struct { bool enable; } sp_config_global_strict; 52typedef struct {
53 bool enable;
54} sp_config_global_strict;
53 55
54typedef struct { bool enable; } sp_config_random; 56typedef struct {
57 bool enable;
58} sp_config_random;
55 59
56typedef struct { bool enable; } sp_config_sloppy; 60typedef struct {
61 bool enable;
62} sp_config_sloppy;
57 63
58typedef struct { bool enable; } sp_config_auto_cookie_secure; 64typedef struct {
65 bool enable;
66} sp_config_auto_cookie_secure;
59 67
60typedef struct { bool enable; } sp_config_disable_xxe; 68typedef struct {
69 bool enable;
70} sp_config_disable_xxe;
61 71
62typedef struct { 72typedef struct {
63 enum samesite_type { strict = 1, lax = 2 } samesite; 73 enum samesite_type { strict = 1, lax = 2 } samesite;