From: Michael Wallner Date: Mon, 8 Mar 2021 10:52:46 +0000 (+0100) Subject: add CURLOPT_MAXAGE_CONN X-Git-Tag: v4.1.0~12 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=37339ed10f277a789b959f37d1652630bba157dc add CURLOPT_MAXAGE_CONN --- diff --git a/src/php_http_client_curl.c b/src/php_http_client_curl.c index aa79d29..ee3a2b4 100644 --- a/src/php_http_client_curl.c +++ b/src/php_http_client_curl.c @@ -1306,6 +1306,11 @@ static void php_http_curle_options_init(php_http_options_t *registry) */ php_http_option_register(registry, ZEND_STRL("fresh_connect"), CURLOPT_FRESH_CONNECT, _IS_BOOL); php_http_option_register(registry, ZEND_STRL("forbid_reuse"), CURLOPT_FORBID_REUSE, _IS_BOOL); +#if PHP_HTTP_CURL_VERSION(7,65,0) + if ((opt = php_http_option_register(registry, ZEND_STRL("maxage_conn"), CURLOPT_MAXAGE_CONN, IS_LONG))) { + ZVAL_LONG(&opt->defval, 118); + } +#endif /* outgoing interface */ php_http_option_register(registry, ZEND_STRL("interface"), CURLOPT_INTERFACE, IS_STRING);