From: Michael Wallner Date: Fri, 5 Mar 2021 06:45:47 +0000 (+0100) Subject: add CURLOPT_DNS_SHUFFLE_ADDRESSES X-Git-Tag: v4.1.0~23 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=a02be7c1b9fdb0907e2fbc4bc1e00bc663b69810;ds=sidebyside add CURLOPT_DNS_SHUFFLE_ADDRESSES --- diff --git a/src/php_http_client_curl.c b/src/php_http_client_curl.c index 8f5b2d5..0ff9139 100644 --- a/src/php_http_client_curl.c +++ b/src/php_http_client_curl.c @@ -1220,7 +1220,7 @@ static void php_http_curle_options_init(php_http_options_t *registry) } #endif #if PHP_HTTP_CURL_VERSION(7,60,0) - php_http_option_register(registry, ZEND_STRL("haproxy_protocol"), CURLOPT_HAPROXYPROTOCOL, _IS_BOOL); + php_http_option_register(registry, ZEND_STRL("haproxy_protocol"), CURLOPT_HAPROX YPROTOCOL, _IS_BOOL); #endif /* unix sockets */ @@ -1266,6 +1266,10 @@ static void php_http_curle_options_init(php_http_options_t *registry) } # endif #endif +#if PHP_HTTP_CURL_VERSION(7,60,0) + php_http_option_register(registry, ZEND_STRL("dns_shuffle_addresses"), CURLOPT_DNS_SHUFFLE_ADDRESSES, _IS_BOOL); +#endif + /* limits */ php_http_option_register(registry, ZEND_STRL("low_speed_limit"), CURLOPT_LOW_SPEED_LIMIT, IS_LONG);