We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, the curl request could work faster when added options like these:
CURLOPT_TCP_FASTOPEN => true // https://curl.se/libcurl/c/CURLOPT_TCP_FASTOPEN.html
CURLOPT_IPRESOLVE => CURL_IPRESOLVE_V4 // https://curl.se/libcurl/c/CURLOPT_IPRESOLVE.html -> shoud me maybe a setter method for peaple who wants to use ipv6
CURLOPT_ENCODING => '' // to enable compression, see php docs
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_2TLS // see https://curl.se/libcurl/c/CURLOPT_HTTP_VERSION.html -> maybe as a setter too
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, the curl request could work faster when added options like these:
CURLOPT_TCP_FASTOPEN => true // https://curl.se/libcurl/c/CURLOPT_TCP_FASTOPEN.html
CURLOPT_IPRESOLVE => CURL_IPRESOLVE_V4 // https://curl.se/libcurl/c/CURLOPT_IPRESOLVE.html -> shoud me maybe a setter method for peaple who wants to use ipv6
CURLOPT_ENCODING => '' // to enable compression, see php docs
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_2TLS // see https://curl.se/libcurl/c/CURLOPT_HTTP_VERSION.html -> maybe as a setter too
The text was updated successfully, but these errors were encountered: