{
http_request *request = (http_request *) ctx;
+#define EMPTY_HEADER(d, l) ((l == 1 && d[0] == '\n') || (l == 2 && d[0] == '\r' && d[1] == '\n'))
switch (type) {
case CURLINFO_DATA_IN:
if (request->conv.last_type == CURLINFO_HEADER_IN) {
phpstr_appends(&request->conv.response, HTTP_CRLF);
}
- case CURLINFO_HEADER_IN:
phpstr_append(&request->conv.response, data, length);
break;
+ case CURLINFO_HEADER_IN:
+ if (!EMPTY_HEADER(data, length)) {
+ phpstr_append(&request->conv.response, data, length);
+ }
+ break;
case CURLINFO_DATA_OUT:
if (request->conv.last_type == CURLINFO_HEADER_OUT) {
phpstr_appends(&request->conv.request, HTTP_CRLF);
}
- case CURLINFO_HEADER_OUT:
phpstr_append(&request->conv.request, data, length);
break;
+ case CURLINFO_HEADER_OUT:
+ if (!EMPTY_HEADER(data, length)) {
+ phpstr_append(&request->conv.request, data, length);
+ }
+ break;
default:
#if 0
fprintf(stderr, "## ", type);
if (data[length-1] != 0xa) {
fprintf(stderr, "\n");
}
-#endif
-#if 0
- fprintf(stderr, "%.*s%s", length, data, data[length-1]=='\n'?"":"\n");
#endif
break;
}
+#if 0
+ fprintf(stderr, "DEBUG: %3d (%5zu) %.*s%s", type, length, length, data, data[length-1]=='\n'?"":"\n");
+#endif
+
if (type) {
request->conv.last_type = type;
}
<email>mike@php.net</email>
<active>yes</active>
</lead>
- <date>2006-12-04</date>
+ <date>2006-12-19</date>
<version>
- <release>1.4.0RC1</release>
+ <release>1.4.0RC2</release>
<api>1.4.0</api>
</version>
<stability>
</stability>
<license>BSD, revised</license>
<notes><![CDATA[
-* Improved response performance
-+ Added "ipresolve" request option
-+ Added HTTP_IPRESOLVE_{ANY|V4|V6}, HttpRequest::IPRESOLVE_{ANY|V4|V6} constants
-+ Added missing HTTP_SSL_VERSION_{ANY|TLSv1|SSLv2|SSLv3}, HttpRequest::SSL_VERSION_{ANY|TLSv1|SSLv2|SSLv3} constants
-+ Added factory methods to HttpMessage, HttpQueryString, HttpRequest, HttpRequestDataShare, HttpDeflateStream, HttpInflateStream
-* Fixed aborted PUT request when empty put data was set with HttpRequest::setPutData()
-* Fixed crash when using non-associative arrays as request headers
-* Fixed crash when serializing incomplete HttpMessage objects
-* Fixed bug #9282: libcurl version error in configure (keith at iveys dot org)
-* Fixed crash when retrieving the response message from an unserialized HttpRequest object
-- Removed obsolete HTML function reference
+* Fixed infinite loop with http_parse_params("=")
+* Fixed greedy response message parsing with proxy CONNECT requests (petr at hroch dot info)
]]></notes>
<contents>
<dir name="/">
}
/* function accepts no args */
-#define NO_ARGS \
- if (ZEND_NUM_ARGS()) { \
- zend_error(E_NOTICE, "Wrong parameter count for %s()", get_active_function_name(TSRMLS_C)); \
- }
+#define NO_ARGS zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "")
/* CR LF */
#define HTTP_CRLF "\r\n"