curl / Mailing Lists / curl-library / Single Mail

curl-library

Re: Using multi-socket facility with epoll

From: Sean MacLennan via curl-library <curl-library_at_cool.haxx.se>
Date: Sun, 14 Oct 2018 12:25:36 -0400

On Sun, 14 Oct 2018 18:56:59 +0300
Eran Ben Horin via curl-library <curl-library_at_cool.haxx.se> wrote:

> Hi,
>
> Thanks for you reply!!
>
> After further debugging, it seems that an ssl handshake takes place,
> and the operation terminates right after it. I changed the protocol
> type to HTTP, and things worked!!!
>
> Question:
> 1. Does this example work for https as well?
> 2. Do I need to do something additional, in order to “wake up” any
> activity after the handshake finished.

I bet the server is using a self-signed cert and curl is rejecting it.

Try adding the following two lines:

  curl_easy_setopt(conn->easy, CURLOPT_SSL_VERIFYPEER, 0L);
  curl_easy_setopt(conn->easy, CURLOPT_SSL_VERIFYHOST, 0L);

Cheers,
   Sean

-------------------------------------------------------------------
Unsubscribe: https://cool.haxx.se/list/listinfo/curl-library
Etiquette: https://curl.haxx.se/mail/etiquette.html
Received on 2018-10-14