From f2e9afdf422c1771d3029416c6284a46c4039781 Mon Sep 17 00:00:00 2001 From: Max Romanov Date: Wed, 2 Aug 2017 13:14:31 +0300 Subject: 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(). --- src/nxt_master_process.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/nxt_master_process.c') diff --git a/src/nxt_master_process.c b/src/nxt_master_process.c index bd72a752..9e32785f 100644 --- a/src/nxt_master_process.c +++ b/src/nxt_master_process.c @@ -200,6 +200,8 @@ static nxt_port_handler_t nxt_master_process_port_handlers[] = { nxt_port_master_data_handler, NULL, nxt_port_ready_handler, + nxt_port_rpc_handler, + nxt_port_rpc_handler, }; -- cgit