nxt_conf_validation.c (1681:542b5b8c0647) nxt_conf_validation.c (1684:a10e10f3071f)
1
2/*
3 * Copyright (C) Valentin V. Bartenev
4 * Copyright (C) NGINX, Inc.
5 */
6
7#include <nxt_main.h>
8#include <nxt_conf.h>

--- 625 unchanged lines hidden (view full) ---

634 }, {
635 .name = nxt_string("options"),
636 .type = NXT_CONF_VLDT_ARRAY,
637 .validator = nxt_conf_vldt_array_iterator,
638 .u.array = nxt_conf_vldt_java_option,
639 }, {
640 .name = nxt_string("unit_jars"),
641 .type = NXT_CONF_VLDT_STRING,
1
2/*
3 * Copyright (C) Valentin V. Bartenev
4 * Copyright (C) NGINX, Inc.
5 */
6
7#include <nxt_main.h>
8#include <nxt_conf.h>

--- 625 unchanged lines hidden (view full) ---

634 }, {
635 .name = nxt_string("options"),
636 .type = NXT_CONF_VLDT_ARRAY,
637 .validator = nxt_conf_vldt_array_iterator,
638 .u.array = nxt_conf_vldt_java_option,
639 }, {
640 .name = nxt_string("unit_jars"),
641 .type = NXT_CONF_VLDT_STRING,
642 }, {
643 .name = nxt_string("threads"),
644 .type = NXT_CONF_VLDT_INTEGER,
645 .validator = nxt_conf_vldt_threads,
646 }, {
647 .name = nxt_string("thread_stack_size"),
648 .type = NXT_CONF_VLDT_INTEGER,
649 .validator = nxt_conf_vldt_thread_stack_size,
642 },
643
644 NXT_CONF_VLDT_NEXT(nxt_conf_vldt_common_members)
645};
646
647
648static nxt_conf_vldt_object_t nxt_conf_vldt_common_members[] = {
649 {

--- 1805 unchanged lines hidden ---
650 },
651
652 NXT_CONF_VLDT_NEXT(nxt_conf_vldt_common_members)
653};
654
655
656static nxt_conf_vldt_object_t nxt_conf_vldt_common_members[] = {
657 {

--- 1805 unchanged lines hidden ---