nxt_router.h (1926:6e85d6c0b8bb) nxt_router.h (1936:953434450ea9)
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_

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

13#include <nxt_main_process.h>
14
15typedef struct nxt_http_request_s nxt_http_request_t;
16#include <nxt_application.h>
17
18
19typedef struct nxt_http_action_s nxt_http_action_t;
20typedef struct nxt_http_routes_s nxt_http_routes_t;
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_

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

13#include <nxt_main_process.h>
14
15typedef struct nxt_http_request_s nxt_http_request_t;
16#include <nxt_application.h>
17
18
19typedef struct nxt_http_action_s nxt_http_action_t;
20typedef struct nxt_http_routes_s nxt_http_routes_t;
21typedef struct nxt_http_client_ip_s nxt_http_client_ip_t;
21typedef struct nxt_upstream_s nxt_upstream_t;
22typedef struct nxt_upstreams_s nxt_upstreams_t;
23typedef struct nxt_router_access_log_s nxt_router_access_log_t;
24
25
26#define NXT_HTTP_ACTION_ERROR ((nxt_http_action_t *) -1)
27
28

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

190 nxt_msec_t proxy_read_timeout;
191
192 nxt_websocket_conf_t websocket_conf;
193
194 nxt_str_t body_temp_path;
195
196 uint8_t discard_unsafe_fields; /* 1 bit */
197
22typedef struct nxt_upstream_s nxt_upstream_t;
23typedef struct nxt_upstreams_s nxt_upstreams_t;
24typedef struct nxt_router_access_log_s nxt_router_access_log_t;
25
26
27#define NXT_HTTP_ACTION_ERROR ((nxt_http_action_t *) -1)
28
29

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

191 nxt_msec_t proxy_read_timeout;
192
193 nxt_websocket_conf_t websocket_conf;
194
195 nxt_str_t body_temp_path;
196
197 uint8_t discard_unsafe_fields; /* 1 bit */
198
199 nxt_http_client_ip_t *client_ip;
200
198#if (NXT_TLS)
199 nxt_tls_conf_t *tls;
200#endif
201} nxt_socket_conf_t;
202
203
204typedef struct {
205 uint32_t count;

--- 32 unchanged lines hidden ---
201#if (NXT_TLS)
202 nxt_tls_conf_t *tls;
203#endif
204} nxt_socket_conf_t;
205
206
207typedef struct {
208 uint32_t count;

--- 32 unchanged lines hidden ---