Introducing pretty NXT_CONF_VLDT_END macro.

This commit is contained in:
Max Romanov
2018-01-18 09:08:16 +03:00
parent a949c2f088
commit c2918a0014

View File

@@ -18,6 +18,9 @@ typedef struct {
} nxt_conf_vldt_object_t; } nxt_conf_vldt_object_t;
#define NXT_CONF_VLDT_END { nxt_null_string, 0, NULL, NULL }
typedef nxt_int_t (*nxt_conf_vldt_member_t)(nxt_conf_validation_t *vldt, typedef nxt_int_t (*nxt_conf_vldt_member_t)(nxt_conf_validation_t *vldt,
nxt_str_t *name, nxt_str_t *name,
nxt_conf_value_t *value); nxt_conf_value_t *value);
@@ -58,7 +61,7 @@ static nxt_conf_vldt_object_t nxt_conf_vldt_root_members[] = {
&nxt_conf_vldt_object_iterator, &nxt_conf_vldt_object_iterator,
(void *) &nxt_conf_vldt_app }, (void *) &nxt_conf_vldt_app },
{ nxt_null_string, 0, NULL, NULL } NXT_CONF_VLDT_END
}; };
@@ -68,7 +71,7 @@ static nxt_conf_vldt_object_t nxt_conf_vldt_listener_members[] = {
&nxt_conf_vldt_app_name, &nxt_conf_vldt_app_name,
NULL }, NULL },
{ nxt_null_string, 0, NULL, NULL } NXT_CONF_VLDT_END
}; };
@@ -88,7 +91,7 @@ static nxt_conf_vldt_object_t nxt_conf_vldt_app_limits_members[] = {
NULL, NULL,
NULL }, NULL },
{ nxt_null_string, 0, NULL, NULL } NXT_CONF_VLDT_END
}; };
@@ -138,7 +141,7 @@ static nxt_conf_vldt_object_t nxt_conf_vldt_python_members[] = {
NULL, NULL,
NULL }, NULL },
{ nxt_null_string, 0, NULL, NULL } NXT_CONF_VLDT_END
}; };
@@ -188,7 +191,7 @@ static nxt_conf_vldt_object_t nxt_conf_vldt_php_members[] = {
NULL, NULL,
NULL }, NULL },
{ nxt_null_string, 0, NULL, NULL } NXT_CONF_VLDT_END
}; };
@@ -228,7 +231,7 @@ static nxt_conf_vldt_object_t nxt_conf_vldt_go_members[] = {
NULL, NULL,
NULL }, NULL },
{ nxt_null_string, 0, NULL, NULL } NXT_CONF_VLDT_END
}; };