diff options
author | Max Romanov <max.romanov@nginx.com> | 2017-08-02 13:20:53 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2017-08-02 13:20:53 +0300 |
commit | 82c0304ab8f4fb2d406fe709639bee535b45d888 (patch) | |
tree | fcb6ecc27ce6ee620fba9cd3e55cc0e5942d3011 /src/nxt_worker_process.c | |
parent | c93d2c76235ae6823ee59b1072338258897ae2d7 (diff) | |
download | unit-82c0304ab8f4fb2d406fe709639bee535b45d888.tar.gz unit-82c0304ab8f4fb2d406fe709639bee535b45d888.tar.bz2 |
Using port rpc in router->master start worker request.
Diffstat (limited to '')
-rw-r--r-- | src/nxt_worker_process.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/nxt_worker_process.c b/src/nxt_worker_process.c index 83c63445..181d854e 100644 --- a/src/nxt_worker_process.c +++ b/src/nxt_worker_process.c @@ -29,7 +29,8 @@ nxt_port_handler_t nxt_controller_process_port_handlers[] = { nxt_port_mmap_handler, nxt_port_controller_data_handler, nxt_port_remove_pid_handler, - NULL, + NULL, /* NXT_PORT_MSG_READY */ + NULL, /* NXT_PORT_MSG_START_WORKER */ nxt_port_rpc_handler, nxt_port_rpc_handler, }; @@ -42,7 +43,8 @@ nxt_port_handler_t nxt_worker_process_port_handlers[] = { nxt_port_mmap_handler, nxt_port_data_handler, nxt_port_remove_pid_handler, - NULL, + NULL, /* NXT_PORT_MSG_READY */ + NULL, /* NXT_PORT_MSG_START_WORKER */ nxt_port_rpc_handler, nxt_port_rpc_handler, }; @@ -55,7 +57,8 @@ nxt_port_handler_t nxt_app_process_port_handlers[] = { nxt_port_mmap_handler, nxt_port_app_data_handler, nxt_port_remove_pid_handler, - NULL, + NULL, /* NXT_PORT_MSG_READY */ + NULL, /* NXT_PORT_MSG_START_WORKER */ nxt_port_rpc_handler, nxt_port_rpc_handler, }; @@ -67,8 +70,9 @@ nxt_port_handler_t nxt_router_process_port_handlers[] = { nxt_port_change_log_file_handler, nxt_port_mmap_handler, nxt_router_conf_data_handler, - nxt_port_remove_pid_handler, - NULL, + nxt_router_remove_pid_handler, + NULL, /* NXT_PORT_MSG_READY */ + NULL, /* NXT_PORT_MSG_START_WORKER */ nxt_port_rpc_handler, nxt_port_rpc_handler, }; |