X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=src%2Fphp_http_client_curl.c;h=ee3a2b432353635b9fc48ce9328d1306b2897d63;hp=aa79d2947f37683c79f07f1b54ffd63dbe99091a;hb=37339ed10f277a789b959f37d1652630bba157dc;hpb=3d3727416df3f7b51b10a5c5d5af7249d5500222 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);