curl to resuse https connection sessions

后端 未结 1 1978
终归单人心
终归单人心 2021-01-25 16:36

I have built curl with openssl and I am able to execute the https connection .

Now every time when curl make TLS connection it makes handshake again .

I need to

相关标签:
1条回答
  • 2021-01-25 17:08

    Re-use the same curl handle in subsequent requests! Don't call curl_easy_cleanup(curl) and curl_easy_init() again between them.

    0 讨论(0)
提交回复
热议问题