diff options
Diffstat (limited to 'src/nxt_port.h')
-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 3f584e9f..78228ff7 100644 --- a/src/nxt_port.h +++ b/src/nxt_port.h @@ -24,6 +24,7 @@ typedef enum { _NXT_PORT_MSG_READY, _NXT_PORT_MSG_START_WORKER, _NXT_PORT_MSG_SOCKET, + _NXT_PORT_MSG_MODULES, _NXT_PORT_MSG_RPC_READY, _NXT_PORT_MSG_RPC_ERROR, @@ -41,6 +42,7 @@ typedef enum { NXT_PORT_MSG_START_WORKER = _NXT_PORT_MSG_START_WORKER | 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_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, |