mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-25 07:07:52 +01:00
Handle x-zstd and x-tor-lzma in parse_http_response().
See: https://bugs.torproject.org/21667
This commit is contained in:
parent
ca632144e5
commit
fbef257c43
1 changed files with 4 additions and 0 deletions
|
@ -2056,6 +2056,10 @@ parse_http_response(const char *headers, int *code, time_t *date,
|
|||
*compression = ZLIB_METHOD;
|
||||
} else if (!strcmp(enc, "gzip") || !strcmp(enc, "x-gzip")) {
|
||||
*compression = GZIP_METHOD;
|
||||
} else if (!strcmp(enc, "x-zstd")) {
|
||||
*compression = ZSTD_METHOD;
|
||||
} else if (!strcmp(enc, "x-tor-lzma")) {
|
||||
*compression = LZMA_METHOD;
|
||||
} else {
|
||||
log_info(LD_HTTP, "Unrecognized content encoding: %s. Trying to deal.",
|
||||
escaped(enc));
|
||||
|
|
Loading…
Add table
Reference in a new issue