"Massimo" wrote: > Estabilish an https connection towards a web server > without any http message exchange (using > curl_easy_setopt(myCurl, CURLOPT_CONNECT_ONLY, TRUE)) > > After a while, send an HTTP POST to the already connected > web server.
It is my understanding that, if you set the connect-only option, "curl_easy_perform()" will only establish the connection. ;-) After that you have to use the "curl_easy_send()" and "curl_easy_recv()" API; the whole protocol implementation is on your shoulders. HTH -- Marco Maggi ------------------------------------------------------------------- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette: http://curl.haxx.se/mail/etiquette.html
