From cc41c1601014f4fcdcdfda78daf3cff22117cb34 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Mon, 1 Mar 2021 16:38:49 +0100 Subject: [PATCH] add curl request option tcp_fastopen --- src/php_http_client_curl.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/php_http_client_curl.c b/src/php_http_client_curl.c index 1dc3ccb..c3e21b6 100644 --- a/src/php_http_client_curl.c +++ b/src/php_http_client_curl.c @@ -1415,6 +1415,9 @@ static void php_http_curle_options_init(php_http_options_t *registry) Z_LVAL(opt->defval) = 60; } #endif +#if PHP_HTTP_CURL_VERSION(7,49,0) + php_http_option_register(registry, ZEND_STRL("tcp_fastopen"), CURLOPT_TCP_FASTOPEN, _IS_BOOL); +#endif /* ssl */ if (PHP_HTTP_CURL_FEATURE(CURL_VERSION_SSL)) { -- 2.30.2