Workaround: Disable ssl session id cache. For unknown reason, this feature prevents pairing on yocto fido (not on morty) with GFE 3.3.0.95

This commit is contained in:
tezcatli 2017-02-26 15:31:43 +01:00 committed by Iwan Timmer
parent 5bac18519c
commit aa6f297707

View File

@ -64,6 +64,7 @@ int http_init(const char* keyDirectory) {
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, _write_curl);
curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1L);
curl_easy_setopt(curl, CURLOPT_SSL_SESSIONID_CACHE, 0L);
return GS_OK;
}