New constants

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@312675 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jakub Vrana 2011-06-30 13:10:16 +00:00
parent e7442a11a5
commit 4d2ea8d948
2 changed files with 50 additions and 0 deletions

View file

@ -1468,6 +1468,32 @@
</listitem>
</varlistentry>
</variablelist>
<variablelist>
<varlistentry>
<term>
<constant>CURLOPT_MAX_RECV_SPEED_LARGE</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
Available since PHP 5.4.0 and cURL 7.15.5
</simpara>
</listitem>
</varlistentry>
</variablelist>
<variablelist>
<varlistentry>
<term>
<constant>CURLOPT_MAX_SEND_SPEED_LARGE</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
Available since PHP 5.4.0 and cURL 7.15.5
</simpara>
</listitem>
</varlistentry>
</variablelist>
<variablelist>
<varlistentry>
<term>

View file

@ -725,6 +725,30 @@
<entry valign="top">
</entry>
</row>
<row>
<entry valign="top"><constant>CURLOPT_MAX_RECV_SPEED_LARGE</constant></entry>
<entry valign="top">
If a download exceeds this speed (counted in bytes per second) on
cumulative average during the transfer, the transfer will pause to
keep the average rate less than or equal to the parameter value.
Defaults to unlimited speed.
</entry>
<entry valign="top">
Added in cURL 7.15.5. Available since PHP 5.4.0.
</entry>
</row>
<row>
<entry valign="top"><constant>CURLOPT_MAX_SEND_SPEED_LARGE</constant></entry>
<entry valign="top">
If an upload exceeds this speed (counted in bytes per second) on
cumulative average during the transfer, the transfer will pause to
keep the average rate less than or equal to the parameter value.
Defaults to unlimited speed.
</entry>
<entry valign="top">
Added in cURL 7.15.5. Available since PHP 5.4.0.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>