Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions source/protocol/http/curlinterface.c
Original file line number Diff line number Diff line change
Expand Up @@ -459,11 +459,15 @@ T2ERROR sendReportOverHTTP(char *httpUrl, char *payload, pid_t* outForkedPid)
pEngine = rdkcertselector_getEngine(thisCertSel);
if(pEngine != NULL)
{
T2Info("%s: debug pEngine %s\n", __func__, pEngine);
code = curl_easy_setopt(curl, CURLOPT_SSLENGINE, pEngine);
T2Info("%s: debug pEngine %s\n", __func__ ,pEngine);
}
else
{
T2Info("%s :debug CURLOPT_SSLENGINE_DEFAULT\n", __func__ );
code = curl_easy_setopt(curl, CURLOPT_SSLENGINE_DEFAULT, 1L);
T2Info("%s : debug CURLOPT_SSLENGINE_DEFAULT 1\n",__func__ );
}
if(code != CURLE_OK)
{
Expand Down
Loading