diff options
author | Zeev Suraski <zeev@php.net> | 2000-11-13 18:54:37 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-11-13 18:54:37 +0000 |
commit | 0f7f5c2c0e616445d14b49641e85dbddcc1651e5 (patch) | |
tree | 83f0bce3ba6ba891798d828e5ad1c0334739513e /main/SAPI.h | |
parent | 9b42296babc97defd3b7635b395506d5539aae20 (diff) | |
download | php-git-0f7f5c2c0e616445d14b49641e85dbddcc1651e5.tar.gz |
- Import Jade Nicoletti's transparent gzip encoding support as an output
handler. Works quite nicely!
- Fix buglets in output buffering
- Add output_handler INI directive
Diffstat (limited to 'main/SAPI.h')
-rw-r--r-- | main/SAPI.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/SAPI.h b/main/SAPI.h index 86eb356104..9c2f06abe3 100644 --- a/main/SAPI.h +++ b/main/SAPI.h @@ -73,7 +73,8 @@ typedef struct { const char *content_type; - unsigned char headers_only; + zend_bool headers_only; + zend_bool no_headers; sapi_post_entry *post_entry; |