diff options
author | Valentin Bartenev <vbart@nginx.com> | 2017-08-16 15:45:38 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2017-08-16 15:45:38 +0300 |
commit | 1ba2f44ad9b95670452f31a0923b8a118a08d867 (patch) | |
tree | 1e9c894eeddaff3ea5cfe8e9e656f281e998d9e0 /src/nxt_conf.c | |
parent | 95907e29128c51be79aec0b5149e2639c3fd9042 (diff) | |
download | unit-1ba2f44ad9b95670452f31a0923b8a118a08d867.tar.gz unit-1ba2f44ad9b95670452f31a0923b8a118a08d867.tar.bz2 |
Introduced nxt_conf_get_array_element().
Diffstat (limited to 'src/nxt_conf.c')
-rw-r--r-- | src/nxt_conf.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/nxt_conf.c b/src/nxt_conf.c index 12e35ebc..d7cd3d05 100644 --- a/src/nxt_conf.c +++ b/src/nxt_conf.c @@ -600,6 +600,25 @@ nxt_conf_next_object_member(nxt_conf_value_t *value, nxt_str_t *name, } +nxt_conf_value_t * +nxt_conf_get_array_element(nxt_conf_value_t *value, uint32_t index) +{ + nxt_conf_array_t *array; + + if (value->type != NXT_CONF_VALUE_ARRAY) { + return NULL; + } + + array = value->u.array; + + if (index >= array->count) { + return NULL; + } + + return &array->elements[index]; +} + + nxt_int_t nxt_conf_op_compile(nxt_mp_t *mp, nxt_conf_op_t **ops, nxt_conf_value_t *root, nxt_str_t *path, nxt_conf_value_t *value) |