Lines Matching refs:engines
329 struct curl_slist *engines = NULL;
331 /* Get the list of engines */
332 curl_easy_getinfo(curl, CURLINFO_SSL_ENGINES, &engines);
334 puts("Build-time engines:");
335 if(engines) {
336 for(; engines; engines = engines->next)
337 printf(" %s\n", engines->data);
343 /* Cleanup the list of engines */
344 curl_slist_free_all(engines);