From 90ae152ce0ace8f2c41a012b9fa52b2f3283a845 Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Fri, 15 Sep 2017 14:38:22 +0300 Subject: [PATCH] Fixed port handlers arrays. --- src/nxt_controller.c | 1 + src/nxt_router.c | 3 +++ 2 files changed, 4 insertions(+) diff --git a/src/nxt_controller.c b/src/nxt_controller.c index 1a595bcf..a97f4098 100644 --- a/src/nxt_controller.c +++ b/src/nxt_controller.c @@ -110,6 +110,7 @@ nxt_port_handler_t nxt_controller_process_port_handlers[] = { NULL, /* NXT_PORT_MSG_START_WORKER */ NULL, /* NXT_PORT_MSG_SOCKET */ NULL, /* NXT_PORT_MSG_MODULES */ + NULL, /* NXT_PORT_MSG_CONF_STORE */ nxt_port_rpc_handler, nxt_port_rpc_handler, }; diff --git a/src/nxt_router.c b/src/nxt_router.c index b328c632..ae569267 100644 --- a/src/nxt_router.c +++ b/src/nxt_router.c @@ -1593,6 +1593,9 @@ static nxt_port_handler_t nxt_router_app_port_handlers[] = { NULL, /* NXT_PORT_MSG_REMOVE_PID */ NULL, /* NXT_PORT_MSG_READY */ NULL, /* NXT_PORT_MSG_START_WORKER */ + NULL, /* NXT_PORT_MSG_SOCKET */ + NULL, /* NXT_PORT_MSG_MODULES */ + NULL, /* NXT_PORT_MSG_CONF_STORE */ nxt_port_rpc_handler, nxt_port_rpc_handler, };