From: Davey Shafik Date: Wed, 2 Sep 2015 04:06:31 +0000 (+1200) Subject: Add CURLPIPE_* constants to properly expose HTTP/2 multiplexing X-Git-Tag: php-7.1.0alpha1~1253^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9ec6a44c5e9f98974c3cad5a95af7b8a5c544616;p=php Add CURLPIPE_* constants to properly expose HTTP/2 multiplexing --- diff --git a/ext/curl/interface.c b/ext/curl/interface.c index 5081127649..f12a9e2492 100644 --- a/ext/curl/interface.c +++ b/ext/curl/interface.c @@ -1217,6 +1217,12 @@ PHP_MINIT_FUNCTION(curl) REGISTER_CURL_CONSTANT(CURL_SSLVERSION_TLSv1_2); #endif +#if LIBCURL_VERSION_NUM >= 0x072B00 /* Available since 7.43.0 */ + REGISTER_CURL_CONSTANT(CURLPIPE_NOTHING); + REGISTER_CURL_CONSTANT(CURLPIPE_HTTP1); + REGISTER_CURL_CONSTANT(CURLPIPE_MULTIPLEX); +#endif + #if CURLOPT_FTPASCII != 0 REGISTER_CURL_CONSTANT(CURLOPT_FTPASCII); #endif