Modules/cURL/curl strerror: Difference between revisions
Jump to navigation
Jump to search
Mack Varial (talk | contribs) No edit summary |
No edit summary |
||
Line 5: | Line 5: | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
curlStrerror(curl handler, CURLcode code) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 17: | Line 17: | ||
==Example== | ==Example== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
curl = | curl = curlInit(); | ||
if not curl then | if not curl then | ||
outputDebugString("Can't connect to http://mtasa.com/ with cURL"); | outputDebugString("Can't connect to http://mtasa.com/ with cURL"); | ||
else | else | ||
curlSetopt(curl, CURLOPT_URL, curlEscape(curl, "http://mtasa.com/")); | |||
result = | result = curlPerform(curl); | ||
print(curlStrerror(curl, result)); -- Since we know that mta exists, we sure get the text 'No error.' | |||
curlClose(curl); | |||
print( | |||
end | end | ||
</syntaxhighlight> | </syntaxhighlight> |
Latest revision as of 11:12, 22 June 2014
This function is provided by the external module cURL. You must install this module to use this function. | |
Returns a string with detailed information of an error.
Syntax
curlStrerror(curl handler, CURLcode code)
Required arguments
- curl The curl handler
- code The curl code
Returns
The string containing the error, if the code was not found in the system it will return nil
Example
curl = curlInit(); if not curl then outputDebugString("Can't connect to http://mtasa.com/ with cURL"); else curlSetopt(curl, CURLOPT_URL, curlEscape(curl, "http://mtasa.com/")); result = curlPerform(curl); print(curlStrerror(curl, result)); -- Since we know that mta exists, we sure get the text 'No error.' curlClose(curl); end