Fabian Sauter

Results 49 issues of Fabian Sauter

I would like to run two `SSLServer` instances (IPv4 and IPv6) in parallel. My first plan was to start both in the same thread and run them with the same...

### I did this I set `curl_easy_setopt(curl, CURLOPT_CERTINFO, 1L);` on Windows with `CURL_USE_SCHANNEL` enabled. With this option set, no HTTPS request works. They all return `CURLE_OUT_OF_MEMORY`. Here is a minimal...

regression
TLS
help wanted
Windows

## Description With the latest releases of OpenSSL we get a few deprecation warnings, when compiling [mongoose](https://github.com/cesanta/mongoose): ```log [build] /home/fabian/Documents/Repos/libcpr/cpr/build/_deps/mongoose-src/mongoose.c: In function ‘mg_use_cert’: [build] /home/fabian/Documents/Repos/libcpr/cpr/build/_deps/mongoose-src/mongoose.c:4758:7: warning: ‘PEM_read_bio_DHparams’ is deprecated: Since...

Enhancement :ok_hand:

We should update the complete library to be `C++20` or at least `C++17` ready. My plan is to make use of `C++17` features like [`std::opt`](https://en.cppreference.com/w/cpp/utility/optional) and the new default deleter...

Feature :sparkles:

This PR reduces the number of transitive `curl.h` includes in cpr for https://github.com/libcpr/cpr/issues/752

Enhancement :ok_hand:

It's currently not possible since all tests fail. This is caused by a false positive data race inside `libcurl`. ```c++ CurlHolder::CurlHolder() { curl_easy_init_mutex_.lock(); handle = curl_easy_init(); // Thread sanitizer false...

Bug :bug:
curl :globe_with_meridians:
CI :bricks:

I'm working on my own web page based on your theme (https://github.com/UWPX/uwpx.github.io). Locally everything works fine, but as soon as I publish it on GitHub links start to break. For...

## Why this PR? I have a couple of problems with the current way Kompute handles dependencies: 1. git-Submodules are a rather outdated concept in my eyes and should be...

I noticed `Kompute.hpp` contains just a copy of all other headers. Is there any reason for not doing something like this: ```c++ #pragma once #include #include // ... ``` Since...

I'm allways getting the "**NS_Error_Failure**" error. After this error the created iFrame will stays like shown bellow: ![Image](http://i.imgur.com/xAQcLtF.png) And this is the code I'm using to create a new instance....