diff options
author | Max Romanov <max.romanov@nginx.com> | 2019-08-16 00:56:38 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2019-08-16 00:56:38 +0300 |
commit | 29911538ea91705fcdcbcf0e271cfbc5c8ed674b (patch) | |
tree | a3a63b97f073cfe67e1b31d2f8c87fdfad4e3520 /src/nxt_http_parse.h | |
parent | caea9d3c07543fecf9035ff2b406c190b714989e (diff) | |
download | unit-29911538ea91705fcdcbcf0e271cfbc5c8ed674b.tar.gz unit-29911538ea91705fcdcbcf0e271cfbc5c8ed674b.tar.bz2 |
Improving response header fields processing.
Fields are filtered one by one before being added to fields list.
This avoids adding and then skipping connection-specific fields.
Diffstat (limited to '')
-rw-r--r-- | src/nxt_http_parse.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/nxt_http_parse.h b/src/nxt_http_parse.h index 6c629936..c5b11bf3 100644 --- a/src/nxt_http_parse.h +++ b/src/nxt_http_parse.h @@ -113,4 +113,28 @@ nxt_int_t nxt_http_fields_process(nxt_list_t *fields, nxt_lvlhsh_t *hash, void *ctx); +const nxt_lvlhsh_proto_t nxt_http_fields_hash_proto; + +nxt_inline nxt_int_t +nxt_http_field_process(nxt_http_field_t *field, nxt_lvlhsh_t *hash, void *ctx) +{ + nxt_lvlhsh_query_t lhq; + nxt_http_field_proc_t *proc; + + lhq.proto = &nxt_http_fields_hash_proto; + + lhq.key_hash = field->hash; + lhq.key.length = field->name_length; + lhq.key.start = field->name; + + if (nxt_lvlhsh_find(hash, &lhq) != NXT_OK) { + return NXT_OK; + } + + proc = lhq.value; + + return proc->handler(ctx, field, proc->data); +} + + #endif /* _NXT_HTTP_PARSER_H_INCLUDED_ */ |