nxt_router.h (771:f349b2d68e75) nxt_router.h (774:b21709350c49)
1
2/*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) NGINX, Inc.
5 */
6
7#ifndef _NXT_ROUTER_H_INCLUDED_
8#define _NXT_ROUTER_H_INCLUDED_

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

54
55typedef struct {
56 nxt_queue_t creating; /* of nxt_socket_conf_t */
57 nxt_queue_t pending; /* of nxt_socket_conf_t */
58 nxt_queue_t updating; /* of nxt_socket_conf_t */
59 nxt_queue_t keeping; /* of nxt_socket_conf_t */
60 nxt_queue_t deleting; /* of nxt_socket_conf_t */
61
1
2/*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) NGINX, Inc.
5 */
6
7#ifndef _NXT_ROUTER_H_INCLUDED_
8#define _NXT_ROUTER_H_INCLUDED_

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

54
55typedef struct {
56 nxt_queue_t creating; /* of nxt_socket_conf_t */
57 nxt_queue_t pending; /* of nxt_socket_conf_t */
58 nxt_queue_t updating; /* of nxt_socket_conf_t */
59 nxt_queue_t keeping; /* of nxt_socket_conf_t */
60 nxt_queue_t deleting; /* of nxt_socket_conf_t */
61
62#if (NXT_TLS)
63 nxt_queue_t tls; /* of nxt_router_tlssock_t */
64#endif
65
62 nxt_queue_t apps; /* of nxt_app_t */
63 nxt_queue_t previous; /* of nxt_app_t */
64
65 uint32_t new_threads;
66 uint32_t stream;
67 uint32_t count;
68
69 nxt_event_engine_t *engine;

--- 127 unchanged lines hidden ---
66 nxt_queue_t apps; /* of nxt_app_t */
67 nxt_queue_t previous; /* of nxt_app_t */
68
69 uint32_t new_threads;
70 uint32_t stream;
71 uint32_t count;
72
73 nxt_event_engine_t *engine;

--- 127 unchanged lines hidden ---