summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-05-06 07:23:35 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-05-06 07:23:35 (GMT)
commit4c4d30dc7d43575b3334722ba9aa37840515a19b (patch)
tree2ed0ac2d8c26907d8927d9f96cd6b4242b3eaee5
parent4aa2998438dbe02e6c704ad6484602ada5ead2df (diff)
parenta3843c65c1f6da9c1b2c7194cd9330f7ba14b371 (diff)
downloadtcl-4c4d30dc7d43575b3334722ba9aa37840515a19b.zip
tcl-4c4d30dc7d43575b3334722ba9aa37840515a19b.tar.gz
tcl-4c4d30dc7d43575b3334722ba9aa37840515a19b.tar.bz2
Close fork
-rw-r--r--library/http/http.tcl6
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"
}
}
}