diff options
author | Peter Korsgaard | 2010-07-25 03:20:53 +0200 |
---|---|---|
committer | Denys Vlasenko | 2010-07-25 03:20:53 +0200 |
commit | 7a2ba329b9235af4c647e0a88c1db023b51cf8a4 (patch) | |
tree | 41f3b67abcd66ef219da52f4b88298031a06cfbc /networking/Config.src | |
parent | 535ce1df5cb6a2bf588e1c2655cf09f49ed455db (diff) | |
download | busybox-7a2ba329b9235af4c647e0a88c1db023b51cf8a4.zip busybox-7a2ba329b9235af4c647e0a88c1db023b51cf8a4.tar.gz |
httpd: optional support for gzip-compressed pages
function old new delta
send_file_and_exit 662 761 +99
handle_incoming_and_exit 2756 2830 +74
send_headers 603 654 +51
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 3/0 up/down: 224/0) Total: 224 bytes
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/Config.src')
-rw-r--r-- | networking/Config.src | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/networking/Config.src b/networking/Config.src index 2d29c42..8604c53 100644 --- a/networking/Config.src +++ b/networking/Config.src @@ -270,6 +270,14 @@ config FEATURE_HTTPD_PROXY Then a request to /url/myfile will be forwarded to http://hostname[:port]/new/path/myfile. +config FEATURE_HTTPD_GZIP + bool "Support for GZIP content encoding" + default y + depends on HTTPD + help + Makes httpd send files using GZIP content encoding if the + client supports it and a pre-compressed <file>.gz exists. + config IFCONFIG bool "ifconfig" default y |