diff options
author | Valentin Bartenev <vbart@nginx.com> | 2017-09-10 06:22:15 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2017-09-10 06:22:15 +0300 |
commit | 4953e5b5cba166bc12a92c686c5e000aaf272667 (patch) | |
tree | b6ab5642b8b4709c8f5c0102bc9610066432eedf /src/nxt_runtime.h | |
parent | 72c3e08158107398bdeb95fe993fe30999b78ebd (diff) | |
download | unit-4953e5b5cba166bc12a92c686c5e000aaf272667.tar.gz unit-4953e5b5cba166bc12a92c686c5e000aaf272667.tar.bz2 |
Configuration persistence.
Now configuration survives server reloads.
Diffstat (limited to 'src/nxt_runtime.h')
-rw-r--r-- | src/nxt_runtime.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nxt_runtime.h b/src/nxt_runtime.h index b491002e..d0decfd2 100644 --- a/src/nxt_runtime.h +++ b/src/nxt_runtime.h @@ -58,6 +58,9 @@ struct nxt_runtime_s { const char *pid; const char *log; const char *modules; + const char *state; + const char *conf; + const char *conf_tmp; const char *control; nxt_queue_t engines; /* of nxt_event_engine_t */ |