diff options
author | Evgeny Kotkov <kotkov@apache.org> | 2016-09-21 12:38:48 +0200 |
---|---|---|
committer | Evgeny Kotkov <kotkov@apache.org> | 2016-09-21 12:38:48 +0200 |
commit | 44c1d726d18760cd9e9da670fcc90c4902a9eee4 (patch) | |
tree | e4be72da8e5074b7595e6e07bf39137437af5fe9 /os | |
parent | more apr_uint32_t usage where appropriate, signed/unsigned warning detox, str... (diff) | |
download | apache2-44c1d726d18760cd9e9da670fcc90c4902a9eee4.tar.xz apache2-44c1d726d18760cd9e9da670fcc90c4902a9eee4.zip |
mod_brotli: Add initial implementation.
This new module supports dynamic Brotli (RFC 7932) compression. Existing
mod_deflate installations can benefit from better compression ratio by
sending Brotli-compressed data to the clients that support it:
SetOutputFilter BROTLI_COMPRESS;DEFLATE
The module features zero-copy processing, which is only possible with the
new API from the upcoming 1.0.x series of brotli [1]. The Linux makefile
works against libbrotli [2], as currently the core brotli repository doesn't
offer a way to build a library [3]. Apart from that, only the CMake build
is now supported.
[1] https://github.com/google/brotli
[2] https://github.com/bagder/libbrotli
[3] https://github.com/google/brotli/pull/332
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1761714 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r-- | os/win32/BaseAddr.ref | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/os/win32/BaseAddr.ref b/os/win32/BaseAddr.ref index 418a7a258d..3be4b1c17a 100644 --- a/os/win32/BaseAddr.ref +++ b/os/win32/BaseAddr.ref @@ -134,3 +134,4 @@ mod_policy.so 0x70C60000 0x00020000 mod_ssl_ct.so 0x70C80000 0x00020000 mod_proxy_http2.so 0x70CC0000 0x00030000 mod_http2.so 0x70D00000 0x00030000 +mod_brotli.so 0x70D30000 0x00020000 |