Skip to content

Commit 99be998

Browse files
committed
7.66.0
1 parent b174323 commit 99be998

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
@@ -1173,6 +1173,10 @@ PHP_MINIT_FUNCTION(curl)
11731173
REGISTER_CURL_CONSTANT(CURLOPT_MAXAGE_CONN);
11741174
#endif
11751175

1176+
#if LIBCURL_VERSION_NUM >= 0x074200 /* Available since 7.66.0 */
1177+
REGISTER_CURL_CONSTANT(CURLOPT_SASL_AUTHZID);
1178+
#endif
1179+
11761180
#if LIBCURL_VERSION_NUM >= 0x074700 /* Available since 7.71.0 */
11771181
REGISTER_CURL_CONSTANT(CURLOPT_ISSUERCERT_BLOB);
11781182
REGISTER_CURL_CONSTANT(CURLOPT_PROXY_ISSUERCERT);
@@ -2669,6 +2673,9 @@ static zend_result _php_curl_setopt(php_curl *ch, zend_long option, zval *zvalue
26692673
#if LIBCURL_VERSION_NUM >= 0x074001 /* Available since 7.64.1 */
26702674
case CURLOPT_ALTSVC:
26712675
#endif
2676+
#if LIBCURL_VERSION_NUM >= 0x074200 /* Available since 7.66.0 */
2677+
case CURLOPT_SASL_AUTHZID:
2678+
#endif
26722679
#if LIBCURL_VERSION_NUM >= 0x074700 /* Available since 7.71.0 */
26732680
case CURLOPT_PROXY_ISSUERCERT:
26742681
#endif

0 commit comments

Comments
 (0)