cxxurl
cxxurl copied to clipboard
Not only a c++ wrapper for curl
Results
1
cxxurl issues
Sort by
recently updated
recently updated
newest added
In Request.h the following code only verifies the peer if you have a Cacert in your code.... if(m_VerifySSL && !m_Cacert.empty()){ SET_CURL_OPT(CURLOPT_SSL_VERIFYPEER, 1); SET_CURL_OPT(CURLOPT_SSL_VERIFYHOST, 1); SET_CURL_OPT(CURLOPT_CAINFO, m_Cacert.c_str()); }else{ SET_CURL_OPT(CURLOPT_SSL_VERIFYPEER, 0); SET_CURL_OPT(CURLOPT_SSL_VERIFYHOST,...