mirror of
https://github.com/curl/curl.git
synced 2026-07-24 15:47:16 +03:00
curl.h: add CURLE_TOO_LARGE
A new error code to be used when an internal field grows too large, like when a dynbuf reaches its maximum. Previously it would return CURLE_OUT_OF_MEMORY for this, which is highly misleading. Ref: #12268 Closes #12269
This commit is contained in:
parent
b7258e4922
commit
f58e493e44
13 changed files with 132 additions and 91 deletions
|
|
@ -288,6 +288,8 @@ the specific problem.
|
|||
SSL Client Certificate required.
|
||||
.IP "CURLE_UNRECOVERABLE_POLL (99)"
|
||||
An internal call to poll() or select() returned error that is not recoverable.
|
||||
.IP "CURLE_TOO_LARGE (100)"
|
||||
A value or data field grew larger than allowed.
|
||||
.SH "CURLMcode"
|
||||
This is the generic return code used by functions in the libcurl multi
|
||||
interface. Also consider \fIcurl_multi_strerror(3)\fP.
|
||||
|
|
@ -410,6 +412,8 @@ The URL contained an invalid number of slashes.
|
|||
The user part of the URL contained bad or invalid characters.
|
||||
.IP "CURLUE_LACKS_IDN (30)"
|
||||
libcurl lacks IDN support.
|
||||
.IP "CURLUE_TOO_LARGE (31)"
|
||||
A value or data field is larger than allowed.
|
||||
.SH "CURLHcode"
|
||||
The header interface returns a \fICURLHcode\fP to indicate when an error has
|
||||
occurred.
|
||||
|
|
|
|||
|
|
@ -328,6 +328,7 @@ CURLE_TFTP_NOSUCHUSER 7.15.0
|
|||
CURLE_TFTP_NOTFOUND 7.15.0
|
||||
CURLE_TFTP_PERM 7.15.0
|
||||
CURLE_TFTP_UNKNOWNID 7.15.0
|
||||
CURLE_TOO_LARGE 8.6.0
|
||||
CURLE_TOO_MANY_REDIRECTS 7.5
|
||||
CURLE_UNKNOWN_OPTION 7.21.5
|
||||
CURLE_UNKNOWN_TELNET_OPTION 7.7 7.21.5
|
||||
|
|
@ -1094,6 +1095,7 @@ CURLUE_NO_USER 7.62.0
|
|||
CURLUE_NO_ZONEID 7.81.0
|
||||
CURLUE_OK 7.62.0
|
||||
CURLUE_OUT_OF_MEMORY 7.62.0
|
||||
CURLUE_TOO_LARGE 8.6.0
|
||||
CURLUE_UNKNOWN_PART 7.62.0
|
||||
CURLUE_UNSUPPORTED_SCHEME 7.62.0
|
||||
CURLUE_URLDECODE 7.62.0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue