Posts Tagged ‘curl’

curl_version_info – returns run-time libcurl version info
USAGE
#include <curl/curl.h>

curl_version_info_data *curl_version_info( CURLversion type);

DESCRIPTION
Returns a pointer to a filled in struct with information about various
run-time features in libcurl. type [...]

Thursday, August 27th, 2009 at 02:20 | Comments Off
Categories: c

curl_version – returns the libcurl version string
USAGE
#include <curl/curl.h>

char *curl_version( );

DESCRIPTION
Returns a human readable string with the version number of libcurl and
some of its important components (like [...]

Thursday, August 27th, 2009 at 02:20 | Comments Off
Categories: c

curl_unescape – URL decodes the given string
USAGE
#include <curl/curl.h>

char *curl_unescape( char *url, int length );

DESCRIPTION
This function will convert the given URL encoded input string to a
[...]

Thursday, August 27th, 2009 at 02:19 | Comments Off
Categories: c

curl_strequal, curl_strnequal – case insensitive string comparisons
USAGE
#include <curl/curl.h>

int curl_strequal(char *str1, char *str2);

int curl_strenqual(char *str1, char *str2, size_t len);

DESCRIPTION
The curl_strequal() function compares the two strings [...]

Thursday, August 27th, 2009 at 02:19 | Comments Off
Categories: c

curl_slist_free_all – free an entire curl_slist list
USAGE
#include <curl/curl.h>

void curl_slist_free_all(struct curl_slist *list);

DESCRIPTION
curl_slist_free_all() removes all traces of a previously built
curl_slist [...]

Thursday, August 27th, 2009 at 02:18 | Comments Off
Categories: c

curl_slist_append – add a string to an slist
USAGE
#include <curl/curl.h>

struct curl_slist *curl_slist_append(struct curl_slist *list, const
char * string);

DESCRIPTION
curl_slist_append() appends a specified string to [...]

Thursday, August 27th, 2009 at 02:18 | Comments Off
Categories: c

curl_multi_remove_handle – remove an easy handle from a multi session
USAGE
#include

CURLMcode curl_multi_remove_handle(CURLM *multi_handle, CURL *easy_han-
dle);

DESCRIPTION
Removes a given easy_handle from the multi_handle. This will make the
[...]

Thursday, August 27th, 2009 at 02:17 | Comments Off
Categories: c

curl_multi_perform – reads/writes available data from each easy handle
USAGE
#include

CURLMcode curl_multi_perform(CURLM *multi_handle, int *running_han-
dles);

DESCRIPTION
When the app thinks there’s data available for [...]

Thursday, August 27th, 2009 at 02:17 | Comments Off
Categories: c

curl_multi_init – Start a multi session
USAGE
#include <curl/curl.h>

CURLM *curl_multi_init( );

DESCRIPTION
This function returns a CURLM handle to be used as input to all the
other multi-functions, [...]

Thursday, August 27th, 2009 at 02:17 | Comments Off
Categories: c

curl_multi_info_read – read multi stack informationals
USAGE
#include

CURLMsg *curl_multi_info_read( CURLM *multi_handle,
[...]

Thursday, August 27th, 2009 at 02:16 | Comments Off
Categories: c