@@ -1656,6 +1656,14 @@ function curl_multi_init()
1656
1656
* CURL_SSLVERSION_TLSv1_0 (4),
1657
1657
* CURL_SSLVERSION_TLSv1_1 (5) or
1658
1658
* 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.
1659
1667
*
1660
1668
*
1661
1669
* Your best bet is to not set this and let it use the default.
@@ -1715,7 +1723,7 @@ function curl_multi_init()
1715
1723
* CURL_SSLVERSION_TLSv1_3,
1716
1724
* CURL_SSLVERSION_MAX_DEFAULT,
1717
1725
* CURL_SSLVERSION_MAX_TLSv1_0,
1718
- * CURL_SSLVERSION_MAX_TLSv1_2 ,
1726
+ * CURL_SSLVERSION_MAX_TLSv1_1 ,
1719
1727
* CURL_SSLVERSION_MAX_TLSv1_2,
1720
1728
* CURL_SSLVERSION_MAX_TLSv1_3 or
1721
1729
* CURL_SSLVERSION_SSLv3.
@@ -1740,6 +1748,42 @@ function curl_multi_init()
1740
1748
*
1741
1749
*
1742
1750
*
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
+ *
1743
1787
* CURLOPT_TIMECONDITION
1744
1788
*
1745
1789
* How CURLOPT_TIMEVALUE is treated.
@@ -2016,6 +2060,20 @@ function curl_multi_init()
2016
2060
*
2017
2061
*
2018
2062
*
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
+ *
2019
2077
* CURLOPT_CUSTOMREQUEST
2020
2078
*
2021
2079
* A custom request method to use instead of
@@ -2541,6 +2599,8 @@ function curl_multi_init()
2541
2599
* The format of the certificate. Supported formats are
2542
2600
* "PEM" (default), "DER",
2543
2601
* and "ENG".
2602
+ * As of OpenSSL 0.9.3, "P12" (for PKCS#12-encoded files)
2603
+ * is also supported.
2544
2604
*
2545
2605
*
2546
2606
* Added in cURL 7.9.3.
0 commit comments