Is there a wrapper or a module for SSL support for BlitzMax? I've been searching the forums in vain for an hour...
SSL support?
BlitzMax Forums/BlitzMax Programming/SSL support? Was considering it at one point, but don't have a need for it personally at the moment, so I didn't take it past the initial stages of finding a suitable library.
So I am trying to wrap just the "easy" part of libcurl. I have to come up with a way to Extern this function:
In C, this function takes an option, then an arbitrary data type:
How do you Extern varargs?
CURL_EXTERN CURLcode curl_easy_setopt(CURL *curl, CURLoption option, ...);
In C, this function takes an option, then an arbitrary data type:
curl_easy_setopt(curl, CURLOPT_POST, 0); curl_easy_setopt(curl, CURLOPT_URL, "urlStr"); curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, curlData);
How do you Extern varargs?