Modules/cURL/curl close: 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"> | ||
curlClose(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 | ||
curlClose(curl); | |||
end | end | ||
</syntaxhighlight> | </syntaxhighlight> |
Latest revision as of 11:07, 22 June 2014
This function is provided by the external module cURL. You must install this module to use this function. | |
Closes the curl engine.
Syntax
curlClose(curl handler)
Required arguments
- curl The curl handler
Returns
True on succes, false otherwise
Example
curl = curlInit("http://mtasa.com/"); if not curl then outputDebugString("Can't connect to http://mtasa.com/ with cURL"); else curlClose(curl); end