diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-08-02 21:11:20 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-08-02 21:11:20 +0300 |
commit | a94178a05e7a96c5c6ccf144aad90695d3773b4b (patch) | |
tree | 1fbf388e1d4600c781c759b300d7fbcac103f1c5 /src/nxt_port.h | |
parent | b150f07e801802124ca6f3b29b4b9f97aa68d52b (diff) | |
download | unit-a94178a05e7a96c5c6ccf144aad90695d3773b4b.tar.gz unit-a94178a05e7a96c5c6ccf144aad90695d3773b4b.tar.bz2 |
Listening socket creation and binding operations are passed
to the master process.
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 1e39c732..90e88a68 100644 --- a/src/nxt_port.h +++ b/src/nxt_port.h @@ -22,6 +22,7 @@ typedef enum { _NXT_PORT_MSG_REMOVE_PID, _NXT_PORT_MSG_READY, _NXT_PORT_MSG_START_WORKER, + _NXT_PORT_MSG_SOCKET, _NXT_PORT_MSG_RPC_READY, _NXT_PORT_MSG_RPC_ERROR, @@ -38,6 +39,7 @@ typedef enum { NXT_PORT_MSG_READY = _NXT_PORT_MSG_READY | NXT_PORT_MSG_LAST, 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_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, |