nxt_router.c (779:3363b421e800) nxt_router.c (804:fe8d2dea28dd)
1
2/*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) Valentin V. Bartenev
5 * Copyright (C) NGINX, Inc.
6 */
7
8#include <nxt_router.h>

--- 275 unchanged lines hidden (view full) ---

284 nxt_app_joint_t *app_joint, int i);
285
286static nxt_router_t *nxt_router;
287
288static const nxt_str_t http_prefix = nxt_string("HTTP_");
289static const nxt_str_t empty_prefix = nxt_string("");
290
291static const nxt_str_t *nxt_app_msg_prefix[] = {
1
2/*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) Valentin V. Bartenev
5 * Copyright (C) NGINX, Inc.
6 */
7
8#include <nxt_router.h>

--- 275 unchanged lines hidden (view full) ---

284 nxt_app_joint_t *app_joint, int i);
285
286static nxt_router_t *nxt_router;
287
288static const nxt_str_t http_prefix = nxt_string("HTTP_");
289static const nxt_str_t empty_prefix = nxt_string("");
290
291static const nxt_str_t *nxt_app_msg_prefix[] = {
292 &empty_prefix,
292 &http_prefix,
293 &http_prefix,
293 &http_prefix,
294 &http_prefix,
294 &empty_prefix,
295 &http_prefix,
296 &http_prefix,
297};
298
299
300nxt_port_handlers_t nxt_router_process_port_handlers = {
301 .quit = nxt_worker_process_quit_handler,
302 .new_port = nxt_router_new_port_handler,

--- 4676 unchanged lines hidden ---
295 &http_prefix,
296 &http_prefix,
297};
298
299
300nxt_port_handlers_t nxt_router_process_port_handlers = {
301 .quit = nxt_worker_process_quit_handler,
302 .new_port = nxt_router_new_port_handler,

--- 4676 unchanged lines hidden ---