1
2/*
3 * Copyright (C) NGINX, Inc.
4 */
5
6#ifndef _NXT_UNIT_H_INCLUDED_
7#define _NXT_UNIT_H_INCLUDED_
8

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

98 nxt_unit_buf_t *request_buf;
99
100 nxt_unit_response_t *response;
101 nxt_unit_buf_t *response_buf;
102 uint32_t response_max_fields;
103
104 nxt_unit_buf_t *content_buf;
105 uint64_t content_length;
106 int content_fd;
107
108 void *data;
109};
110
111
112/*
113 * Set of application-specific callbacks. Application may leave all optional
114 * callbacks as NULL.

--- 286 unchanged lines hidden ---