Re: added support for precompressed static files on httpd(so sorry about my other email that was unreadable)

2021-05-02 Thread alloca
> your diff has numerous issues. What exactly do you mean by issues? Do you mean bugs? > It also seems you've either purposely broken comment blocks or > are commenting out sections of existing code. Yes i am commenting out sections of existing code, i didn't comment the code out at the start but

Re: added support for precompressed static files on httpd(so sorry about my other email that was unreadable)

2021-05-01 Thread Mike Larkin
On Sat, May 01, 2021 at 09:26:39PM +, alloca wrote: > This patch adds a serve_gzip option. When enabled, If the client requests > path, then serve path.gz if it exists and the client accepts > Content-Encoding: gzip. > > man style > diff -up httpd.orig/config.c httpd/config.c > --- httpd.

added support for precompressed static files on httpd(so sorry about my other email that was unreadable)

2021-05-01 Thread alloca
This patch adds a serve_gzip option. When enabled, If the client requests path, then serve path.gz if it exists and the client accepts Content-Encoding: gzip. diff -up httpd.orig/config.c httpd/config.c --- httpd.orig/config.c Sat May 1 15:03:11 2021 +++ httpd/config.c Sat May 1 15:45:43 2021

Re: added support for precompressed static files on httpd(so sorry about my other email that was unreadable)

2021-05-01 Thread Dave Voutila
alloca writes: > This patch adds a serve_gzip option. When enabled, If the client requests > path, then serve path.gz if it exists and the client accepts > Content-Encoding: gzip. While I believe I understand your objective, your diff has numerous issues. It also seems you've either purposely