Skip to content

Commit 3ba801f

Browse files
committed
7.75.0
1 parent 17d3d32 commit 3ba801f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

ext/curl/interface.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1202,6 +1202,11 @@ PHP_MINIT_FUNCTION(curl)
12021202
REGISTER_CURL_CONSTANT(CURLOPT_HSTS_CTRL);
12031203
#endif
12041204

1205+
#if LIBCURL_VERSION_NUM >= 0x074b00 /* Available since 7.75.0 */
1206+
REGISTER_CURL_CONSTANT(CURLAUTH_AWS_SIGV4);
1207+
REGISTER_CURL_CONSTANT(CURLOPT_AWS_SIGV4);
1208+
#endif
1209+
12051210
REGISTER_CURL_CONSTANT(CURLOPT_SAFE_UPLOAD);
12061211

12071212
#ifdef PHP_CURL_NEED_OPENSSL_TSL
@@ -2702,6 +2707,9 @@ static zend_result _php_curl_setopt(php_curl *ch, zend_long option, zval *zvalue
27022707
#endif
27032708
#if LIBCURL_VERSION_NUM >= 0x074900 /* Available since 7.73.0 */
27042709
case CURLOPT_SSL_EC_CURVES:
2710+
#endif
2711+
#if LIBCURL_VERSION_NUM >= 0x074b00 /* Available since 7.75.0 */
2712+
case CURLOPT_AWS_SIGV4:
27052713
#endif
27062714
{
27072715
zend_string *tmp_str;

0 commit comments

Comments
 (0)