Andrew Clayton
Andrew Clayton
On Tue, 23 Jul 2024 08:03:33 -0700 Alejandro Colomar ***@***.***> wrote: > With stpsep() being a function of mine similar to strsep(3). > > Bad part: strsep(3) is a GNU...
> On Tue, 23 Jul 2024 08:03:33 -0700 Alejandro Colomar ***@***.***> wrote: With stpsep() being a function of mine similar to strsep(3). Bad part: strsep(3) is a GNU extension. >...
Rebased with master... ``` $ git range-diff 92f215d1...30df48f3 -: -------- > 1: 57a75ea0 build(deps): bump openssl from 0.10.64 to 0.10.66 in /tools/unitctl -: -------- > 2: b892e994 tools/unitctl: update readme...
Fix compilation (nxt_tstr_query_failed() is no longer a thing) ``` $ git range-diff 30df48f3...48980f9c 1: 30df48f3 ! 1: 48980f9c [WIP] HTTP Compression Support @@ src/nxt_http_compression.c (new) + return NXT_ERROR; + }...
- Some interface constification - Initial application response compression (basically doing it the same was as in V1) ``` $ git range-diff 48980f9c...628302a4 1: 48980f9c ! 1: 46bcc2c5 [WIP] HTTP...
- Rebased with master - Split up into more logical patches - Coding style fixes (should now be fully Unit coding syule, more or less) TODO - Some more configuration...
- Add some runtime validation on the provided compression levels. At startup set the required compression level to either the compressors default value if it it isn't set in the...
- Factor out compression code from nxt_http_static_send() and move it into nxt_http_compression.c TODO - Make the Accept-Encoding header parsing more robust - More complete error handling NOTE: It still contains...
- Reorganise some code in nxt_http_compression.c. Some function can now be static to this file. Use nxt_http_comp_bound() and nxt_http_comp_compress() in nxt_http_comp_compress_app_response() - Replace a ternary with nxt_min() TODO - Make...
- Split out the addition of the nxt_http_comp_compress() and nxt_http_comp_bound() functions into their own commit. TODO - Make the Accept-Encoding header parsing more robust - More complete error handling **NOTE:**...