On Thu, 26 Nov 2009, Massimo wrote: Please don't top-post!
I'm not sure that the use of CURLOPT_CONNECT_ONLY made impossible a following call to curl_easy_perform()
Once you've done CURLOPT_CONNECT_ONLY, you've taken over the control of the connection and socket and you can basically only do curl_easy_send() and curl_easy_recv() on it.
If you want to use curl_easy_perform() to send the POST, then don't do CONNECT_ONLY.
-- / daniel.haxx.se ------------------------------------------------------------------- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette: http://curl.haxx.se/mail/etiquette.html
