From 9ec6a44c5e9f98974c3cad5a95af7b8a5c544616 Mon Sep 17 00:00:00 2001 From: Davey Shafik Date: Wed, 2 Sep 2015 16:06:31 +1200 Subject: [PATCH] Add CURLPIPE_* constants to properly expose HTTP/2 multiplexing --- ext/curl/interface.c | 6 ++++++ 1 file changed, 6 insertions(+) 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 -- 2.40.0