From: Michael Wallner Date: Mon, 8 Mar 2021 08:32:50 +0000 (+0100) Subject: add CURLOPT_HTTP09_ALLOWED X-Git-Tag: v4.1.0~15 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=47c6847f1b231cd6a63e5a325b3c630197e426f6;hp=092ee9822b5497662242dd6f513726881214145e add CURLOPT_HTTP09_ALLOWED --- diff --git a/src/php_http_client_curl.c b/src/php_http_client_curl.c index 82c6226..b7bb8c1 100644 --- a/src/php_http_client_curl.c +++ b/src/php_http_client_curl.c @@ -1409,6 +1409,9 @@ static void php_http_curle_options_init(php_http_options_t *registry) /* http protocol version */ php_http_option_register(registry, ZEND_STRL("protocol"), CURLOPT_HTTP_VERSION, IS_LONG); +#if PHP_HTTP_CURL_VERSION(7,64,0) + php_http_option_register(registry, ZEND_STRL("http09_allowed"), CURLOPT_HTTP09_ALLOWED, _IS_BOOL); +#endif /* timeouts */ if ((opt = php_http_option_register(registry, ZEND_STRL("timeout"), CURLOPT_TIMEOUT_MS, IS_DOUBLE))) {