DragonOsman
New Member
Hi, everyone. First post here.
I have this server code I wrote in C++ a few years ago that I'm trying to enable ALPN and HTTP/2 support in. I've added code for ALPN already. I have code for pulling root certs from the Windows Cert Store in there that I want to port to Linux, but I want to ask: how do I do this?
My current code is here. Here's the full code repo.
The reason I want to do this is that I want to use nghttp2 to handle the HTTP/2 requests but I can't do much without Cygwin or WSL. Their ASIO C++ wrapper has to be enabled with a `./configure` flag or it can't be built, and the proxy server requires Cygwin or WSL to be built too.
I have this server code I wrote in C++ a few years ago that I'm trying to enable ALPN and HTTP/2 support in. I've added code for ALPN already. I have code for pulling root certs from the Windows Cert Store in there that I want to port to Linux, but I want to ask: how do I do this?
My current code is here. Here's the full code repo.
The reason I want to do this is that I want to use nghttp2 to handle the HTTP/2 requests but I can't do much without Cygwin or WSL. Their ASIO C++ wrapper has to be enabled with a `./configure` flag or it can't be built, and the proxy server requires Cygwin or WSL to be built too.