Re: OpenSSL 3 HTTP client C++ example?

2022-06-22 Thread Benedikt Hallinger
, it works like expected. Thank you! Am 2022-06-22 9:41, schrieb David von Oheimb: Hi again Beni, On Wed, 2022-06-22 at 08:29 +0200, Benedikt Hallinger wrote: Hi David and thank you for your advice and example. my pleasure. I was about to send a slightly improved version of my example code

Re: OpenSSL 3 HTTP client C++ example?

2022-06-22 Thread Benedikt Hallinger
example attached. Example build and usage: gcc http_client.c -Iinclude -L. -lcrypto -lssl -o http_client ./http_client https://httpbin.org/ && echo ok Regards, David On 20.06.22 10:54, Benedikt Hallinger wrote: Hi there, I currently try to get my hands dirty with C++ and the new

OpenSSL 3 HTTP_Open client C++ example?

2022-06-20 Thread Benedikt Hallinger
Hi there, I currently try to get my hands dirty with C++ and the new HTTPs client introduced with OpenSSL 3. However I struggle to get started. My goal is to open a https secured website and download its contents into a std::string for further parsing. Does someone on the list know of a