nxt_conn.h (167:06ebbe0a5c07) nxt_conn.h (180:3453139f9728)
1
2/*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) NGINX, Inc.
5 */
6
7#ifndef _NXT_CONN_H_INCLUDED_
8#define _NXT_CONN_H_INCLUDED_

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

178 uint8_t sendfile; /* 2 bits */
179 uint8_t tcp_nodelay; /* 1 bit */
180
181 nxt_queue_link_t link;
182};
183
184
185typedef uint32_t nxt_req_id_t;
1
2/*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) NGINX, Inc.
5 */
6
7#ifndef _NXT_CONN_H_INCLUDED_
8#define _NXT_CONN_H_INCLUDED_

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

178 uint8_t sendfile; /* 2 bits */
179 uint8_t tcp_nodelay; /* 1 bit */
180
181 nxt_queue_link_t link;
182};
183
184
185typedef uint32_t nxt_req_id_t;
186typedef struct nxt_app_parse_ctx_s nxt_app_parse_ctx_t;
187
188typedef struct {
189 nxt_req_id_t req_id;
190 nxt_conn_t *conn;
191 nxt_port_t *app_port;
192
193 nxt_queue_link_t link; /* for nxt_conn_t.requests */
194} nxt_req_conn_link_t;

--- 176 unchanged lines hidden ---
186
187typedef struct {
188 nxt_req_id_t req_id;
189 nxt_conn_t *conn;
190 nxt_port_t *app_port;
191
192 nxt_queue_link_t link; /* for nxt_conn_t.requests */
193} nxt_req_conn_link_t;

--- 176 unchanged lines hidden ---