File: constants_curl_multi.xml

package info (click to toggle)
php-doc 20241205~git.dfcbb86%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 70,956 kB
  • sloc: xml: 968,269; php: 23,883; javascript: 671; sh: 177; makefile: 37
file content (91 lines) | stat: -rw-r--r-- 2,587 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="utf-8"?>
<variablelist xml:id="constant.curl-multi.constants" role="constant_list">
 <title>curl_multi_<replaceable>*</replaceable> status constants</title>
 <varlistentry xml:id="constant.curlm-added-already">
  <term>
   <constant>CURLM_ADDED_ALREADY</constant>
   (<type>int</type>)
  </term>
  <listitem>
   <simpara>
    An easy handle already added to a multi handle was attempted to get added a second time.
    Available as of cURL 7.32.1.
   </simpara>
  </listitem>
 </varlistentry>
 <varlistentry xml:id="constant.curlm-bad-easy-handle">
  <term>
   <constant>CURLM_BAD_EASY_HANDLE</constant>
   (<type>int</type>)
  </term>
  <listitem>
   <simpara>
    An easy handle was not good/valid. It could mean that it is not an easy handle at all, or possibly that the handle already is in use by this or another multi handle.
    Available as of cURL 7.9.6.
   </simpara>
  </listitem>
 </varlistentry>
 <varlistentry xml:id="constant.curlm-bad-handle">
  <term>
   <constant>CURLM_BAD_HANDLE</constant>
   (<type>int</type>)
  </term>
  <listitem>
   <simpara>
    The passed-in handle is not a valid multi handle.
    Available as of cURL 7.9.6.
   </simpara>
  </listitem>
 </varlistentry>
 <varlistentry xml:id="constant.curlm-call-multi-perform">
  <term>
   <constant>CURLM_CALL_MULTI_PERFORM</constant>
   (<type>int</type>)
  </term>
  <listitem>
   <simpara>
    As of cURL 7.20.0, this constant is not used.
    Before cURL 7.20.0, this status could be returned by
    <function>curl_multi_exec</function> when <function>curl_multi_select</function>
    or a similar function was called before it returned any other constant.
    Available as of cURL 7.9.6.
   </simpara>
  </listitem>
 </varlistentry>
 <varlistentry xml:id="constant.curlm-internal-error">
  <term>
   <constant>CURLM_INTERNAL_ERROR</constant>
   (<type>int</type>)
  </term>
  <listitem>
   <simpara>
    Internal <literal>libcurl</literal> error.
    Available as of cURL 7.9.6.
   </simpara>
  </listitem>
 </varlistentry>
 <varlistentry xml:id="constant.curlm-ok">
  <term>
   <constant>CURLM_OK</constant>
   (<type>int</type>)
  </term>
  <listitem>
   <simpara>
    No errors.
    Available as of cURL 7.9.6.
   </simpara>
  </listitem>
 </varlistentry>
 <varlistentry xml:id="constant.curlm-out-of-memory">
  <term>
   <constant>CURLM_OUT_OF_MEMORY</constant>
   (<type>int</type>)
  </term>
  <listitem>
   <simpara>
    Ran out of memory while processing multi handles.
    Available as of cURL 7.9.6.
   </simpara>
  </listitem>
 </varlistentry>
</variablelist>