Modules/cURL/curl cleanup: 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"> | ||
curlCleanup(curl handler) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 16: | Line 16: | ||
==Example== | ==Example== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
curl = | curl = curlInit("http://mtasa.com/"); | ||
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 | ||
curlPerform(curl); | |||
curlCleanup(curl); | |||
curlClose(curl); | |||
end | end | ||
</syntaxhighlight> | </syntaxhighlight> |
Latest revision as of 11:09, 22 June 2014
This function is provided by the external module cURL. You must install this module to use this function. | |
Cleans up the curl handle.
Syntax
curlCleanup(curl handler)
Required arguments
- curl The curl handler
Returns
Nothing usefull
Example
curl = curlInit("http://mtasa.com/"); if not curl then outputDebugString("Can't connect to http://mtasa.com/ with cURL"); else curlPerform(curl); curlCleanup(curl); curlClose(curl); end