diff options
author | Stanislav Malyshev <stas@php.net> | 2000-10-28 17:13:28 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2000-10-28 17:13:28 +0000 |
commit | 06de8e78cff4f985b0490bd30c2255871ab3afe4 (patch) | |
tree | 8db7ed49d5f6f457d302edb5c6864e596f56b630 /ext/session/php_session.h | |
parent | b74d02dbe4a70a055871477ca147ebe06bf4603f (diff) | |
download | php-git-06de8e78cff4f985b0490bd30c2255871ab3afe4.tar.gz |
Allow to send secure cookies
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 812b6dbeca..1d052279b8 100644 --- a/ext/session/php_session.h +++ b/ext/session/php_session.h @@ -81,6 +81,7 @@ typedef struct { long cookie_lifetime; char *cookie_path; char *cookie_domain; + zend_bool cookie_secure; ps_module *mod; void *mod_data; HashTable vars; |