diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-05-06 07:21:48 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-05-06 07:21:48 (GMT) |
| commit | 7a08af566e7aea37be248b984bf73d1feb61eb06 (patch) | |
| tree | 038a2ae5d494ad78b34d5ba0bbb3a5501393500e | |
| parent | bbd762f7774136b2d07b84f34dac9ef826d4445f (diff) | |
| parent | 08515e32c84bb536f017ca02e2ae1a8934d67ba0 (diff) | |
| download | tcl-7a08af566e7aea37be248b984bf73d1feb61eb06.zip tcl-7a08af566e7aea37be248b984bf73d1feb61eb06.tar.gz tcl-7a08af566e7aea37be248b984bf73d1feb61eb06.tar.bz2 | |
Close fork
| -rw-r--r-- | library/http/http.tcl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/library/http/http.tcl b/library/http/http.tcl index c4f165b..326d9d8 100644 --- a/library/http/http.tcl +++ b/library/http/http.tcl @@ -3456,8 +3456,12 @@ proc http::ContentEncoding {token} { gzip - x-gzip { lappend r gunzip } compress - x-compress { lappend r decompress } identity {} + br { + return -code error\ + "content-encoding \"br\" not implemented" + } default { - return -code error "unsupported content-encoding \"$coding\"" + Log "unknown content-encoding \"$coding\" ignored" } } } |
