From 37339ed10f277a789b959f37d1652630bba157dc Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Mon, 8 Mar 2021 11:52:46 +0100 Subject: [PATCH] add CURLOPT_MAXAGE_CONN --- src/php_http_client_curl.c | 5 +++++ 1 file changed, 5 insertions(+) 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); -- 2.30.2