Modules/cURL/curl strerror

From Multi Theft Auto: Wiki
Revision as of 18:59, 31 January 2011 by Alexander (talk | contribs) (Created page with "__NOTOC__ {{ModuleFunction|cURL}} Returns a string with detailed information of an error. ==Syntax== <syntaxhighlight lang="lua"> curl_strerror(curl handler, CURLcode code) </syntaxhighlight> ==Required...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Package-x-generic.png 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

curl_strerror(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 = curl_init();
if not curl then
    outputDebugString("Can't connect to http://mtasa.com/ with cURL");
else
    curl_setopt(curl, CURLOPT_URL, curl_escape(curl, "http://mtasa.com/"));
    result = curl_perform(curl, {
        writefunction = function(html)
            -- Hell what should i do with html? :S
        end,
    });
    print(curl_strerror(curl, result)); -- Since we know that mta exists, we sure get the text 'No error.'
    curl_close(curl);
end


See also