diff options
author | Frederik Bosch <f.bosch@genkgo.nl> | 2017-07-07 19:06:53 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-07-31 12:40:24 +0200 |
commit | 08b9310e6d8fc83e785213aab95afbec4d248c0f (patch) | |
tree | b9e14ee7c30226e790503aeadbfbf8dacd47da7f /ext/session/php_session.h | |
parent | 3ccd98547828297e52f04885840facc4856dcb1f (diff) | |
download | php-git-08b9310e6d8fc83e785213aab95afbec4d248c0f.tar.gz |
implement same site cookie see https://bugs.php.net/bug.php?id=72230 see https://tools.ietf.org/html/draft-west-first-party-cookies-07 see https://scotthelme.co.uk/csrf-is-dead/
Diffstat (limited to 'ext/session/php_session.h')
-rw-r--r-- | ext/session/php_session.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/session/php_session.h b/ext/session/php_session.h index c137946ca7..0119a79fce 100644 --- a/ext/session/php_session.h +++ b/ext/session/php_session.h @@ -155,6 +155,7 @@ typedef struct _php_ps_globals { char *cookie_domain; zend_bool cookie_secure; zend_bool cookie_httponly; + char *cookie_samesite; const ps_module *mod; const ps_module *default_mod; void *mod_data; |