Hi everyone :) There is any way to get what WriteFunction will return ? if my write function was :
size_t verif_function(void *ptr, size_t size, size_t nmemb, void *userdata)
{
if(strlen(ptr)>144)
return 0;
else
return 1;
}
and possibly used like this :
curl_easy_setopt(handle,WRITEFUNCTION,verif_function);
Thanks
------------------------------------------------------------------- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette: http://curl.haxx.se/mail/etiquette.html
