X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_client_curl.c;fp=php_http_client_curl.c;h=8aaeaa069019b6936408d54d8bad95ff465e07e2;hp=501681d3ec9e96df9a5101c04e72a3d504055ee7;hb=225ce54f0baaf9f840c952d9f2e7bfc52aae0981;hpb=9467cc0206e131f51106ef0f3c4ff4769f7b4767 diff --git a/php_http_client_curl.c b/php_http_client_curl.c index 501681d..8aaeaa0 100644 --- a/php_http_client_curl.c +++ b/php_http_client_curl.c @@ -948,9 +948,10 @@ static STATUS php_http_curle_option_set_lastmodified(php_http_option_t *opt, zva static STATUS php_http_curle_option_set_compress(php_http_option_t *opt, zval *val, void *userdata) { php_http_client_curl_handler_t *curl = userdata; + CURL *ch = curl->handle; - if (Z_BVAL_P(val)) { - curl->options.headers = curl_slist_append(curl->options.headers, "Accept-Encoding: gzip;q=1.0,deflate;q=0.5"); + if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_ACCEPT_ENCODING, Z_BVAL_P(val) ? "" : NULL)) { + return FAILURE; } return SUCCESS; }