diff options
author | Valentin Bartenev <vbart@nginx.com> | 2019-09-30 19:11:17 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2019-09-30 19:11:17 +0300 |
commit | f7d3db314da88be47eeed0a3509368cbe4c5f04f (patch) | |
tree | 05e6f11157599241e9ce83a7ea90246dde3a6a81 /src/nxt_http_parse.h | |
parent | 2dbda125db743f71d4dd104b29fa58620eb49de2 (diff) | |
download | unit-f7d3db314da88be47eeed0a3509368cbe4c5f04f.tar.gz unit-f7d3db314da88be47eeed0a3509368cbe4c5f04f.tar.bz2 |
HTTP parser: removed unused "exten" field.
This field was intended for MIME type lookup by file extension when serving
static files, but this use case is too narrow; only a fraction of requests
targets static content, and the URI presumably isn't rewritten. Moreover,
current implementation uses the entire filename for MIME type lookup if the
file has no extension.
Instead of extracting filenames and extensions when parsing requests, it's
easier to obtain them right before serving static content; this behavior is
already implemented. Thus, we can drop excessive logic from parser.
Diffstat (limited to '')
-rw-r--r-- | src/nxt_http_parse.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nxt_http_parse.h b/src/nxt_http_parse.h index a307ea73..d7ce5e4f 100644 --- a/src/nxt_http_parse.h +++ b/src/nxt_http_parse.h @@ -44,7 +44,6 @@ struct nxt_http_request_parse_s { nxt_str_t path; nxt_str_t args; - nxt_str_t exten; nxt_http_ver_t version; |