diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-05-06 07:23:35 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-05-06 07:23:35 (GMT) |
| commit | 4c4d30dc7d43575b3334722ba9aa37840515a19b (patch) | |
| tree | 2ed0ac2d8c26907d8927d9f96cd6b4242b3eaee5 | |
| parent | 4aa2998438dbe02e6c704ad6484602ada5ead2df (diff) | |
| parent | a3843c65c1f6da9c1b2c7194cd9330f7ba14b371 (diff) | |
| download | tcl-4c4d30dc7d43575b3334722ba9aa37840515a19b.zip tcl-4c4d30dc7d43575b3334722ba9aa37840515a19b.tar.gz tcl-4c4d30dc7d43575b3334722ba9aa37840515a19b.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 6f85e99..549f98b 100644 --- a/library/http/http.tcl +++ b/library/http/http.tcl @@ -3575,8 +3575,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" } } } |
