File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ PHP NEWS
16
16
. Fixed bug #69221 (Segmentation fault when using a generator in combination
17
17
with an Iterator). (Nikita)
18
18
19
+ - Curl:
20
+ . Implemented FR#69278 (HTTP2 support). (Masaki Kagaya)
21
+
19
22
- Enchant:
20
23
. Fixed bug #65406 (Enchant broker plugins are in the wrong place in windows
21
24
builds). (Anatol)
Original file line number Diff line number Diff line change 408
408
- cURL:
409
409
- Added CURLOPT_SAFE_UPLOAD to be used with curl_setopt().
410
410
- Added CURL_WRAPPERS_ENABLED to reflect --with-curlwrappers.
411
+ - Added CURL_HTTP_VERSION_2_0 and CURL_VERSION_HTTP2 in 5.5.24+.
411
412
412
413
- GD
413
414
- Added constants for imageflip:
Original file line number Diff line number Diff line change @@ -858,6 +858,9 @@ PHP_MINIT_FUNCTION(curl)
858
858
/* Curl Http Version constants (CURLOPT_HTTP_VERSION) */
859
859
REGISTER_CURL_CONSTANT (CURL_HTTP_VERSION_1_0 );
860
860
REGISTER_CURL_CONSTANT (CURL_HTTP_VERSION_1_1 );
861
+ #if LIBCURL_VERSION_NUM >= 0x072100 /* 7.33.0 */
862
+ REGISTER_CURL_CONSTANT (CURL_HTTP_VERSION_2_0 );
863
+ #endif
861
864
REGISTER_CURL_CONSTANT (CURL_HTTP_VERSION_NONE );
862
865
863
866
/* Curl Lock constants */
@@ -887,6 +890,9 @@ PHP_MINIT_FUNCTION(curl)
887
890
REGISTER_CURL_CONSTANT (CURL_VERSION_KERBEROS4 );
888
891
REGISTER_CURL_CONSTANT (CURL_VERSION_LIBZ );
889
892
REGISTER_CURL_CONSTANT (CURL_VERSION_SSL );
893
+ #if LIBCURL_VERSION_NUM >= 0x072100 /* 7.33.0 */
894
+ REGISTER_CURL_CONSTANT (CURL_VERSION_HTTP2 );
895
+ #endif
890
896
891
897
#if LIBCURL_VERSION_NUM >= 0x070a06 /* Available since 7.10.6 */
892
898
REGISTER_CURL_CONSTANT (CURLOPT_HTTPAUTH );
You can’t perform that action at this time.
0 commit comments