Skip to content

Commit 5314373

Browse files
committed
7.73.0
1 parent be85c8f commit 5314373

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

ext/curl/interface.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1191,6 +1191,10 @@ PHP_MINIT_FUNCTION(curl)
11911191
REGISTER_CURL_CONSTANT(CURLOPT_SSLKEY_BLOB);
11921192
#endif
11931193

1194+
#if LIBCURL_VERSION_NUM >= 0x074900 /* Available since 7.73.0 */
1195+
REGISTER_CURL_CONSTANT(CURLOPT_SSL_EC_CURVES);
1196+
#endif
1197+
11941198
REGISTER_CURL_CONSTANT(CURLOPT_SAFE_UPLOAD);
11951199

11961200
#ifdef PHP_CURL_NEED_OPENSSL_TSL
@@ -2685,6 +2689,9 @@ static zend_result _php_curl_setopt(php_curl *ch, zend_long option, zval *zvalue
26852689
#endif
26862690
#if LIBCURL_VERSION_NUM >= 0x074700 /* Available since 7.71.0 */
26872691
case CURLOPT_PROXY_ISSUERCERT:
2692+
#endif
2693+
#if LIBCURL_VERSION_NUM >= 0x074900 /* Available since 7.73.0 */
2694+
case CURLOPT_SSL_EC_CURVES:
26882695
#endif
26892696
{
26902697
zend_string *tmp_str;

0 commit comments

Comments
 (0)