Hi Nihal,
On Sun, Jul 05, 2020 at 04:19:13PM -0500, Nihal Jere wrote:
> I wrote a very simple TLS reverse proxy which can be used as a companion
> to quark. Essentially, it just turns quark's HTTP into HTTPS. It depends
> only on libtls (from LibreSSL) and libbsd (for strlcpy).
>
> You can read m
> I don't think it's worth adding a dependency on libbsd
> over such a simple function, and memccpy is POSIX (XSI) and accepted
> for C2x.
I agree. It's been a few months, but I think I thought that strlcpy was
the cleanest way to go about this.
> - It might be useful to have separate options for
On 2020-07-05, Nihal Jere wrote:
> I wrote a very simple TLS reverse proxy which can be used as a companion
> to quark. Essentially, it just turns quark's HTTP into HTTPS. It depends
> only on libtls (from LibreSSL) and libbsd (for strlcpy).
Seems like a neat project. Have you considered using me
Hello,
I wrote a very simple TLS reverse proxy which can be used as a companion
to quark. Essentially, it just turns quark's HTTP into HTTPS. It depends
only on libtls (from LibreSSL) and libbsd (for strlcpy).
You can read more about it here:
https://nihaljere.xyz/words/tlsrp.html
and clone it f