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_port.h | |
parent | 72c3e08158107398bdeb95fe993fe30999b78ebd (diff) | |
download | unit-4953e5b5cba166bc12a92c686c5e000aaf272667.tar.gz unit-4953e5b5cba166bc12a92c686c5e000aaf272667.tar.bz2 |
Configuration persistence.
Now configuration survives server reloads.
Diffstat (limited to '')
-rw-r--r-- | src/nxt_port.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nxt_port.h b/src/nxt_port.h index 78228ff7..a338a8c4 100644 --- a/src/nxt_port.h +++ b/src/nxt_port.h @@ -25,6 +25,7 @@ typedef enum { _NXT_PORT_MSG_START_WORKER, _NXT_PORT_MSG_SOCKET, _NXT_PORT_MSG_MODULES, + _NXT_PORT_MSG_CONF_STORE, _NXT_PORT_MSG_RPC_READY, _NXT_PORT_MSG_RPC_ERROR, @@ -43,6 +44,7 @@ typedef enum { NXT_PORT_MSG_LAST, NXT_PORT_MSG_SOCKET = _NXT_PORT_MSG_SOCKET | NXT_PORT_MSG_LAST, NXT_PORT_MSG_MODULES = _NXT_PORT_MSG_MODULES | NXT_PORT_MSG_LAST, + NXT_PORT_MSG_CONF_STORE = _NXT_PORT_MSG_CONF_STORE | NXT_PORT_MSG_LAST, NXT_PORT_MSG_RPC_READY = _NXT_PORT_MSG_RPC_READY, NXT_PORT_MSG_RPC_READY_LAST = _NXT_PORT_MSG_RPC_READY | NXT_PORT_MSG_LAST, NXT_PORT_MSG_RPC_ERROR = _NXT_PORT_MSG_RPC_ERROR | NXT_PORT_MSG_LAST, |