Skip to content

Commit 34aca07

Browse files
committed
Fix: Regenerate files
1 parent b761812 commit 34aca07

File tree

3 files changed

+63
-3
lines changed

3 files changed

+63
-3
lines changed

generated/curl.php

Lines changed: 61 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1656,6 +1656,14 @@ function curl_multi_init()
16561656
* CURL_SSLVERSION_TLSv1_0 (4),
16571657
* CURL_SSLVERSION_TLSv1_1 (5) or
16581658
* CURL_SSLVERSION_TLSv1_2 (6).
1659+
* The maximum TLS version can be set by using one of the CURL_SSLVERSION_MAX_*
1660+
* constants. It is also possible to OR one of the CURL_SSLVERSION_*
1661+
* constants with one of the CURL_SSLVERSION_MAX_* constants.
1662+
* CURL_SSLVERSION_MAX_DEFAULT (the maximum version supported by the library),
1663+
* CURL_SSLVERSION_MAX_TLSv1_0,
1664+
* CURL_SSLVERSION_MAX_TLSv1_1,
1665+
* CURL_SSLVERSION_MAX_TLSv1_2, or
1666+
* CURL_SSLVERSION_MAX_TLSv1_3.
16591667
*
16601668
*
16611669
* Your best bet is to not set this and let it use the default.
@@ -1715,7 +1723,7 @@ function curl_multi_init()
17151723
* CURL_SSLVERSION_TLSv1_3,
17161724
* CURL_SSLVERSION_MAX_DEFAULT,
17171725
* CURL_SSLVERSION_MAX_TLSv1_0,
1718-
* CURL_SSLVERSION_MAX_TLSv1_2,
1726+
* CURL_SSLVERSION_MAX_TLSv1_1,
17191727
* CURL_SSLVERSION_MAX_TLSv1_2,
17201728
* CURL_SSLVERSION_MAX_TLSv1_3 or
17211729
* CURL_SSLVERSION_SSLv3.
@@ -1740,6 +1748,42 @@ function curl_multi_init()
17401748
*
17411749
*
17421750
*
1751+
* CURLOPT_TCP_KEEPALIVE
1752+
*
1753+
* If set to 1, TCP keepalive probes will be sent. The delay and
1754+
* frequency of these probes can be controlled by the CURLOPT_TCP_KEEPIDLE
1755+
* and CURLOPT_TCP_KEEPINTVL options, provided the operating system
1756+
* supports them. If set to 0 (default) keepalive probes are disabled.
1757+
*
1758+
*
1759+
* Added in cURL 7.25.0. Available since PHP 5.5.0.
1760+
*
1761+
*
1762+
*
1763+
* CURLOPT_TCP_KEEPIDLE
1764+
*
1765+
* Sets the delay, in seconds, that the operating system will wait while the connection is
1766+
* idle before sending keepalive probes, if CURLOPT_TCP_KEEPALIVE is
1767+
* enabled. Not all operating systems support this option.
1768+
* The default is 60.
1769+
*
1770+
*
1771+
* Added in cURL 7.25.0. Available since PHP 5.5.0.
1772+
*
1773+
*
1774+
*
1775+
* CURLOPT_TCP_KEEPINTVL
1776+
*
1777+
* Sets the interval, in seconds, that the operating system will wait between sending
1778+
* keepalive probes, if CURLOPT_TCP_KEEPALIVE is enabled.
1779+
* Not all operating systems support this option.
1780+
* The default is 60.
1781+
*
1782+
*
1783+
* Added in cURL 7.25.0. Available since PHP 5.5.0.
1784+
*
1785+
*
1786+
*
17431787
* CURLOPT_TIMECONDITION
17441788
*
17451789
* How CURLOPT_TIMEVALUE is treated.
@@ -2016,6 +2060,20 @@ function curl_multi_init()
20162060
*
20172061
*
20182062
*
2063+
* CURLOPT_COOKIELIST
2064+
*
2065+
* A cookie string (i.e. a single line in Netscape/Mozilla format, or a regular
2066+
* HTTP-style Set-Cookie header) adds that single cookie to the internal cookie store.
2067+
* "ALL" erases all cookies held in memory.
2068+
* "SESS" erases all session cookies held in memory.
2069+
* "FLUSH" writes all known cookies to the file specified by CURLOPT_COOKIEJAR.
2070+
* "RELOAD" loads all cookies from the files specified by CURLOPT_COOKIEFILE.
2071+
*
2072+
*
2073+
* Available since PHP 5.5.0 and cURL 7.14.1.
2074+
*
2075+
*
2076+
*
20192077
* CURLOPT_CUSTOMREQUEST
20202078
*
20212079
* A custom request method to use instead of
@@ -2541,6 +2599,8 @@ function curl_multi_init()
25412599
* The format of the certificate. Supported formats are
25422600
* "PEM" (default), "DER",
25432601
* and "ENG".
2602+
* As of OpenSSL 0.9.3, "P12" (for PKCS#12-encoded files)
2603+
* is also supported.
25442604
*
25452605
*
25462606
* Added in cURL 7.9.3.

generated/mysql.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ function mysql_create_db(string $database_name, $link_identifier = null): void
132132
* row_number should be a value in the range from 0 to
133133
* mysql_num_rows - 1. However if the result set
134134
* is empty (mysql_num_rows == 0), a seek to 0 will
135-
* fail with a E_WARNING and
135+
* fail with an E_WARNING and
136136
* mysql_data_seek will return FALSE.
137137
*
138138
* @param resource $result The result resource that

generated/openssl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function openssl_csr_export($csr, ?string &$out, bool $notext = true): void
8484
* array - if shortnames is TRUE (the default) then
8585
* fields will be indexed with the short name form, otherwise, the long name
8686
* form will be used - e.g.: CN is the shortname form of commonName.
87-
* @return array Returns TRUE on success.
87+
* @return array Returns an associative array with subject description.
8888
* @throws OpensslException
8989
*
9090
*/

0 commit comments

Comments
 (0)