summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_application.h
diff options
context:
space:
mode:
authorValentin Bartenev <vbart@nginx.com>2020-12-22 17:53:41 +0300
committerValentin Bartenev <vbart@nginx.com>2020-12-22 17:53:41 +0300
commitcac762ab7ef22798d0f1d0813201c0018bd589a1 (patch)
treead094a56c7018f230ab8b83dd40085e41adb2280 /src/nxt_application.h
parent65295c81413cff75eddef2845f09159711e553df (diff)
downloadunit-cac762ab7ef22798d0f1d0813201c0018bd589a1.tar.gz
unit-cac762ab7ef22798d0f1d0813201c0018bd589a1.tar.bz2
Python: multiple values in the "path" option.
Diffstat (limited to 'src/nxt_application.h')
-rw-r--r--src/nxt_application.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/nxt_application.h b/src/nxt_application.h
index 5632f56f..632c5632 100644
--- a/src/nxt_application.h
+++ b/src/nxt_application.h
@@ -47,13 +47,13 @@ typedef struct {
typedef struct {
- char *home;
- nxt_str_t path;
- nxt_str_t module;
- char *callable;
- nxt_str_t protocol;
- uint32_t threads;
- uint32_t thread_stack_size;
+ char *home;
+ nxt_conf_value_t *path;
+ nxt_str_t module;
+ char *callable;
+ nxt_str_t protocol;
+ uint32_t threads;
+ uint32_t thread_stack_size;
} nxt_python_app_conf_t;