LibCurlModule: curl_easy_strerror or similar?

BlitzMax Forums/Brucey's Modules/LibCurlModule: curl_easy_strerror or similar?

Murilo(Posted 2010) [#1]
Is there anything like the curl_easy_strerror method available in LibCurlModule?

http://curl.haxx.se/libcurl/c/curl_easy_strerror.html

Basically, I want to be able to have a human readable error message when .Perform() returns a non-zero status code.

Thanks


Brucey(Posted 2010) [#2]
There's this :
Function CurlError:String(errorCode:Int)

Which internally calls the function you mention.

I prefer BlitzMax-esque function names...


Murilo(Posted 2010) [#3]
Brilliant. Thanks again.