Deleted
Added
nxt_controller.c (342:82c2825a617a) | nxt_controller.c (347:e14011f5f005) |
---|---|
1 2/* 3 * Copyright (C) Igor Sysoev 4 * Copyright (C) Valentin V. Bartenev 5 * Copyright (C) NGINX, Inc. 6 */ 7 8#include <nxt_main.h> --- 175 unchanged lines hidden (view full) --- 184 nxt_port_recv_msg_t *msg) 185{ 186 nxt_int_t rc; 187 nxt_runtime_t *rt; 188 nxt_conf_value_t *conf; 189 190 nxt_port_new_port_handler(task, msg); 191 | 1 2/* 3 * Copyright (C) Igor Sysoev 4 * Copyright (C) Valentin V. Bartenev 5 * Copyright (C) NGINX, Inc. 6 */ 7 8#include <nxt_main.h> --- 175 unchanged lines hidden (view full) --- 184 nxt_port_recv_msg_t *msg) 185{ 186 nxt_int_t rc; 187 nxt_runtime_t *rt; 188 nxt_conf_value_t *conf; 189 190 nxt_port_new_port_handler(task, msg); 191 |
192 if (msg->new_port->type != NXT_PROCESS_ROUTER) { | 192 if (msg->u.new_port->type != NXT_PROCESS_ROUTER) { |
193 return; 194 } 195 196 conf = nxt_controller_conf.root; 197 198 if (conf != NULL) { 199 rc = nxt_controller_conf_send(task, conf, 200 nxt_controller_conf_init_handler, NULL); --- 1037 unchanged lines hidden --- | 193 return; 194 } 195 196 conf = nxt_controller_conf.root; 197 198 if (conf != NULL) { 199 rc = nxt_controller_conf_send(task, conf, 200 nxt_controller_conf_init_handler, NULL); --- 1037 unchanged lines hidden --- |