diff options
author | Alejandro Colomar <alx@nginx.com> | 2023-07-19 14:22:21 +0200 |
---|---|---|
committer | Alejandro Colomar <alx@kernel.org> | 2023-10-25 13:37:58 +0200 |
commit | fd4f4e4c5943c3bcd09e3bdcbeefc263aa2f1937 (patch) | |
tree | 5c91e83b03f5dd9b975fadfa2cb2cf6e03b653a2 /src/nxt_conf_validation.c | |
parent | ddb7d61f6173c2f191f4eddc15f1f912e940e42c (diff) | |
download | unit-fd4f4e4c5943c3bcd09e3bdcbeefc263aa2f1937.tar.gz unit-fd4f4e4c5943c3bcd09e3bdcbeefc263aa2f1937.tar.bz2 |
HTTP: compress: added "compress" action.
There are still no supported encodings. This is just infrastructure for
the next commits, which will add gzip compression.
Signed-off-by: Alejandro Colomar <alx@nginx.com>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
Diffstat (limited to 'src/nxt_conf_validation.c')
-rw-r--r-- | src/nxt_conf_validation.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/nxt_conf_validation.c b/src/nxt_conf_validation.c index f00b28b8..0e1f7340 100644 --- a/src/nxt_conf_validation.c +++ b/src/nxt_conf_validation.c @@ -254,6 +254,7 @@ static nxt_conf_vldt_object_t nxt_conf_vldt_php_options_members[]; static nxt_conf_vldt_object_t nxt_conf_vldt_php_target_members[]; static nxt_conf_vldt_object_t nxt_conf_vldt_wasm_access_members[]; static nxt_conf_vldt_object_t nxt_conf_vldt_common_members[]; +static nxt_conf_vldt_object_t nxt_conf_vldt_compress_members[]; static nxt_conf_vldt_object_t nxt_conf_vldt_app_limits_members[]; static nxt_conf_vldt_object_t nxt_conf_vldt_app_processes_members[]; static nxt_conf_vldt_object_t nxt_conf_vldt_app_isolation_members[]; @@ -697,6 +698,11 @@ static nxt_conf_vldt_object_t nxt_conf_vldt_action_common_members[] = { .validator = nxt_conf_vldt_object_iterator, .u.object = nxt_conf_vldt_response_header, }, + { + .name = nxt_string("compress"), + .type = NXT_CONF_VLDT_OBJECT, + .u.members = nxt_conf_vldt_compress_members, + }, NXT_CONF_VLDT_END }; @@ -1148,6 +1154,16 @@ static nxt_conf_vldt_object_t nxt_conf_vldt_common_members[] = { }; +static nxt_conf_vldt_object_t nxt_conf_vldt_compress_members[] = { + { + .name = nxt_string("encoding"), + .type = NXT_CONF_VLDT_STRING, + }, + + NXT_CONF_VLDT_END +}; + + static nxt_conf_vldt_object_t nxt_conf_vldt_app_limits_members[] = { { .name = nxt_string("timeout"), |