Björn Sundin

Results 8 comments of Björn Sundin

Hmm, what exactly do you mean with following 30x status codes? Are you making a request to a website that redirects to another URL that redirects to another URL etc,...

Ahh got it, well here is an example of how you could do it: ```cpp auto response_future = http_client::get("youtube.com").send_async(); while (true) { std::cout

Hm, I don't think there is any good solution to this without using threads unless the work that you are doing in the main program while fetching the content is...

I will try to implement it then :). Sadly C++ has no support for named arguments, so I try to avoid boolean parameters where the meaning is not obvious from...

Great work! What was the reason for adding ```cpp target_include_directories(cpp20_http_client_test PRIVATE ${Catch2_INCLUDE_DIRS}) ``` ?

Ah okay, I will remove that for now then. What do you think about using VCPKG in GitHub actions, in order to use the latest version of catch2? This looks...

An issue with that is that we can't easily do the same with OpenSSL. I think using VCPKG will allow us to build on MacOS as well! I will try...