diff options
author | Pierrick Charron <pierrick@php.net> | 2012-12-19 19:46:57 -0500 |
---|---|---|
committer | Pierrick Charron <pierrick@php.net> | 2012-12-19 19:46:57 -0500 |
commit | aa9156d7e077d007c395cec6cad8f5d30e8fa33b (patch) | |
tree | e79c6537f33c1b1b0316b60990fedc68d359261d /ext/curl/php_curl.h | |
parent | 1ee8c3d9a25b88d4a075f78377188ad71f5b2e84 (diff) | |
parent | 66b88c92bb7796b65f2f1da4b04ef91c0ce7a850 (diff) | |
download | php-git-aa9156d7e077d007c395cec6cad8f5d30e8fa33b.tar.gz |
Merge branch 'PHP-5.4' into PHP-5.5
* PHP-5.4:
Fixed bug #55438 (Curlwapper is not sending http header randomly)
Diffstat (limited to 'ext/curl/php_curl.h')
-rw-r--r-- | ext/curl/php_curl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/curl/php_curl.h b/ext/curl/php_curl.h index a9e0f869c9..0a272fa20d 100644 --- a/ext/curl/php_curl.h +++ b/ext/curl/php_curl.h @@ -210,6 +210,7 @@ typedef struct { CURLMcode mcode; int pending; zval *headers; + struct curl_slist *headers_slist; /* holds custom headers sent out in the request */ } php_curl_stream; |