diff options
author | Zeev Suraski <zeev@php.net> | 2001-08-25 15:57:42 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-08-25 15:57:42 +0000 |
commit | 13ff183225ef9159a33b8489cbaab9685e4820da (patch) | |
tree | cdb17863950ceaadcb10619befa34f1c5bd29add /ext/standard/url_scanner_ex.h | |
parent | bc596544a18b3efc1c249c5ebe18f01c420a142c (diff) | |
download | php-git-13ff183225ef9159a33b8489cbaab9685e4820da.tar.gz |
Move the trans-sid mechanism to use the output buffering mechanism.
Advantages:
- Would work with the output buffering mechanism in general, and with
output compression in particular
- Should yield better performance (untested as of yet)
Diffstat (limited to 'ext/standard/url_scanner_ex.h')
-rw-r--r-- | ext/standard/url_scanner_ex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/url_scanner_ex.h b/ext/standard/url_scanner_ex.h index d5595570ae..7a90a6d7bf 100644 --- a/ext/standard/url_scanner_ex.h +++ b/ext/standard/url_scanner_ex.h @@ -24,7 +24,7 @@ PHP_MSHUTDOWN_FUNCTION(url_scanner_ex); PHP_RSHUTDOWN_FUNCTION(url_scanner_ex); PHP_RINIT_FUNCTION(url_scanner_ex); -char *url_adapt_ext_ex(const char *src, size_t srclen, const char *name, const char *value, size_t *newlen TSRMLS_DC); +char *url_adapt_ext_ex(const char *src, size_t srclen, const char *name, const char *value, size_t *newlen, zend_bool do_flush TSRMLS_DC); char *url_adapt_single_url(const char *url, size_t urllen, const char *name, const char *value, size_t *newlen TSRMLS_DC); |