mirror of
https://github.com/curl/curl.git
synced 2026-08-02 21:30:28 +03:00
urlapi: add curl_url_strerror()
Add curl_url_strerror() to convert CURLUcode into readable string and facilitate easier troubleshooting in programs using URL API. Extend CURLUcode with CURLU_LAST for iteration in unit tests. Update man pages with a mention of new function. Update example code and tests with new functionality where it fits. Closes #7605
This commit is contained in:
parent
f0b8d1c5f6
commit
3363eeb262
25 changed files with 233 additions and 72 deletions
|
|
@ -152,6 +152,25 @@ s3: Invalid share handle
|
|||
s4: Out of memory
|
||||
s5: Feature not enabled in this library
|
||||
s6: CURLSHcode unknown
|
||||
u0: No error
|
||||
u1: An invalid CURLU pointer was passed as argument
|
||||
u2: An invalid 'part' argument was passed as argument
|
||||
u3: A malformed input was passed to a URL API function
|
||||
u4: The port number was not a decimal number between 0 and 65535
|
||||
u5: This libcurl build doesn't support the given URL scheme
|
||||
u6: URL decode error, most likely because of rubbish in the input
|
||||
u7: A memory function failed
|
||||
u8: Credentials was passed in the URL when prohibited
|
||||
u9: An unknown part ID was passed to a URL API function
|
||||
u10: There is no scheme part in the URL
|
||||
u11: There is no user part in the URL
|
||||
u12: There is no password part in the URL
|
||||
u13: There is no options part in the URL
|
||||
u14: There is no host part in the URL
|
||||
u15: There is no port part in the URL
|
||||
u16: There is no query part in the URL
|
||||
u17: There is no fragment part in the URL
|
||||
u18: CURLUcode unknown
|
||||
</stdout>
|
||||
</verify>
|
||||
|
||||
|
|
|
|||
|
|
@ -35,9 +35,9 @@ Set excessive URL lengths
|
|||
<stdout>
|
||||
CURLOPT_URL 10000000 bytes URL == 43
|
||||
CURLOPT_POSTFIELDS 10000000 bytes data == 0
|
||||
CURLUPART_URL 10000000 bytes URL == 3
|
||||
CURLUPART_SCHEME 10000000 bytes scheme == 3
|
||||
CURLUPART_USER 10000000 bytes user == 3
|
||||
CURLUPART_URL 10000000 bytes URL == 3 (A malformed input was passed to a URL API function)
|
||||
CURLUPART_SCHEME 10000000 bytes scheme == 3 (A malformed input was passed to a URL API function)
|
||||
CURLUPART_USER 10000000 bytes user == 3 (A malformed input was passed to a URL API function)
|
||||
</stdout>
|
||||
</verify>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue