summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_worker_process.c
diff options
context:
space:
mode:
authorMax Romanov <max.romanov@nginx.com>2017-08-02 13:14:31 +0300
committerMax Romanov <max.romanov@nginx.com>2017-08-02 13:14:31 +0300
commitf2e9afdf422c1771d3029416c6284a46c4039781 (patch)
treef468d92f7055f53482abab254fd521aecafa6ec3 /src/nxt_worker_process.c
parent3812ffd336414904affc43d29229b04a2d6d8ae6 (diff)
downloadunit-f2e9afdf422c1771d3029416c6284a46c4039781.tar.gz
unit-f2e9afdf422c1771d3029416c6284a46c4039781.tar.bz2
Port RPC interface introduced.
Usage: 1. Register handlers in incoming port with nxt_port_rpc_register_handler(). 2. Use return value as a stream identifier for next nxt_port_socket_write().
Diffstat (limited to 'src/nxt_worker_process.c')
-rw-r--r--src/nxt_worker_process.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/nxt_worker_process.c b/src/nxt_worker_process.c
index a7db8b6b..83c63445 100644
--- a/src/nxt_worker_process.c
+++ b/src/nxt_worker_process.c
@@ -29,6 +29,9 @@ nxt_port_handler_t nxt_controller_process_port_handlers[] = {
nxt_port_mmap_handler,
nxt_port_controller_data_handler,
nxt_port_remove_pid_handler,
+ NULL,
+ nxt_port_rpc_handler,
+ nxt_port_rpc_handler,
};
@@ -39,6 +42,9 @@ nxt_port_handler_t nxt_worker_process_port_handlers[] = {
nxt_port_mmap_handler,
nxt_port_data_handler,
nxt_port_remove_pid_handler,
+ NULL,
+ nxt_port_rpc_handler,
+ nxt_port_rpc_handler,
};
@@ -49,6 +55,9 @@ nxt_port_handler_t nxt_app_process_port_handlers[] = {
nxt_port_mmap_handler,
nxt_port_app_data_handler,
nxt_port_remove_pid_handler,
+ NULL,
+ nxt_port_rpc_handler,
+ nxt_port_rpc_handler,
};
@@ -59,6 +68,9 @@ nxt_port_handler_t nxt_router_process_port_handlers[] = {
nxt_port_mmap_handler,
nxt_router_conf_data_handler,
nxt_port_remove_pid_handler,
+ NULL,
+ nxt_port_rpc_handler,
+ nxt_port_rpc_handler,
};