Deleted Added
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>
9#include <nxt_runtime.h>
10#include <nxt_master_process.h>
11#include <nxt_conf.h>
12
13
14typedef struct {
15 nxt_conf_value_t *root;
16 nxt_mp_t *pool;
17} nxt_controller_conf_t;
18

--- 1011 unchanged lines hidden ---