blob: 7a10f811d161d36ca20776d121479dd773209a4e [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau3667d5d2009-10-18 19:50:43 +02002 * include/types/proto_http.h
3 * This file contains HTTP protocol definitions.
4 *
Willy Tarreauff011f22011-01-06 17:51:27 +01005 * Copyright (C) 2000-2011 Willy Tarreau - w@1wt.eu
Willy Tarreau3667d5d2009-10-18 19:50:43 +02006 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
22#ifndef _TYPES_PROTO_HTTP_H
23#define _TYPES_PROTO_HTTP_H
24
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020025#include <common/config.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020026
Willy Tarreau3bac9ff2007-03-18 17:31:28 +010027#include <types/buffers.h>
28#include <types/hdr_idx.h>
29
Willy Tarreaufcffa692010-01-10 14:21:19 +010030/* These are the flags that are found in txn->flags */
Willy Tarreau3d300592007-03-18 18:34:41 +010031
32/* action flags */
33#define TX_CLDENY 0x00000001 /* a client header matches a deny regex */
34#define TX_CLALLOW 0x00000002 /* a client header matches an allow regex */
35#define TX_SVDENY 0x00000004 /* a server header matches a deny regex */
36#define TX_SVALLOW 0x00000008 /* a server header matches an allow regex */
37#define TX_CLTARPIT 0x00000010 /* the session is tarpitted (anti-dos) */
Willy Tarreaub608feb2010-01-02 22:47:18 +010038
Willy Tarreau92954fd2010-10-06 19:38:55 +020039/* transaction flags dedicated to cookies : bits values 0x20 to 0x80 (0-7 shift 5) */
Willy Tarreau3d300592007-03-18 18:34:41 +010040#define TX_CK_NONE 0x00000000 /* this session had no cookie */
Willy Tarreau92954fd2010-10-06 19:38:55 +020041#define TX_CK_INVALID 0x00000020 /* this session had a cookie which matches no server */
42#define TX_CK_DOWN 0x00000040 /* this session had cookie matching a down server */
43#define TX_CK_VALID 0x00000060 /* this session had cookie matching a valid server */
Willy Tarreaub761ec42010-10-07 15:28:23 +020044#define TX_CK_EXPIRED 0x00000080 /* this session had an expired cookie (idle for too long) */
45#define TX_CK_OLD 0x000000A0 /* this session had too old a cookie (offered too long ago) */
Willy Tarreauc89ccb62012-04-05 21:18:22 +020046#define TX_CK_UNUSED 0x000000C0 /* this session had a cookie but it was not used (eg: use-server was preferred) */
Willy Tarreau92954fd2010-10-06 19:38:55 +020047#define TX_CK_MASK 0x000000E0 /* mask to get this session's cookie flags */
48#define TX_CK_SHIFT 5 /* bit shift */
Willy Tarreau3d300592007-03-18 18:34:41 +010049
Willy Tarreauf1348312010-10-07 15:54:11 +020050/* response cookie information, bits values 0x100 to 0x700 (0-7 shift 8) */
51#define TX_SCK_NONE 0x00000000 /* no cookie found in the response */
52#define TX_SCK_FOUND 0x00000100 /* a persistence cookie was found and forwarded */
53#define TX_SCK_DELETED 0x00000200 /* an existing persistence cookie was deleted */
54#define TX_SCK_INSERTED 0x00000300 /* a persistence cookie was inserted */
55#define TX_SCK_REPLACED 0x00000400 /* a persistence cookie was present and rewritten */
56#define TX_SCK_UPDATED 0x00000500 /* an expirable persistence cookie was updated */
Willy Tarreau3d300592007-03-18 18:34:41 +010057#define TX_SCK_MASK 0x00000700 /* mask to get the set-cookie field */
Willy Tarreau3d300592007-03-18 18:34:41 +010058#define TX_SCK_SHIFT 8 /* bit shift */
Willy Tarreauf1348312010-10-07 15:54:11 +020059
60#define TX_SCK_PRESENT 0x00000800 /* a cookie was found in the server's response */
Willy Tarreau3d300592007-03-18 18:34:41 +010061
62/* cacheability management, bits values 0x1000 to 0x3000 (0-3 shift 12) */
63#define TX_CACHEABLE 0x00001000 /* at least part of the response is cacheable */
64#define TX_CACHE_COOK 0x00002000 /* a cookie in the response is cacheable */
65#define TX_CACHE_SHIFT 12 /* bit shift */
66
Willy Tarreau5b154472009-12-21 20:11:07 +010067/* request and response HTTP version */
68#define TX_REQ_VER_11 0x00004000 /* the request is HTTP/1.1 or above */
69#define TX_RES_VER_11 0x00008000 /* the response is HTTP/1.1 or above */
Willy Tarreau3667d5d2009-10-18 19:50:43 +020070
71/* report presence of transfer-encoding:chunked and content-length headers */
72#define TX_REQ_CNT_LEN 0x00010000 /* content-length present in the request */
73#define TX_REQ_TE_CHNK 0x00020000 /* transfer-encoding: chunked present in the request */
74#define TX_RES_CNT_LEN 0x00040000 /* content-length present in the response */
75#define TX_RES_TE_CHNK 0x00080000 /* transfer-encoding: chunked present in the response */
Willy Tarreaubaaee002006-06-26 02:48:02 +020076
Willy Tarreau5b154472009-12-21 20:11:07 +010077/* indicate how we *want* the connection to behave, regardless of what is in
78 * the headers. We have 4 possible values right now :
79 * - WANT_TUN : will be a tunnel (default when nothing configured or with CONNECT).
80 * - WANT_KAL : try to maintain keep-alive
81 * - WANT_SCL : enforce close on the server side
82 * - WANT_CLO : enforce close on both sides
83 */
84#define TX_CON_WANT_TUN 0x00000000 /* note: it's important that it is 0 (init) */
85#define TX_CON_WANT_KAL 0x00100000
86#define TX_CON_WANT_SCL 0x00200000
87#define TX_CON_WANT_CLO 0x00300000
88#define TX_CON_WANT_MSK 0x00300000 /* this is the mask to get the bits */
89
Willy Tarreaubbf0b372010-01-18 16:54:40 +010090#define TX_CON_CLO_SET 0x00400000 /* "connection: close" is now set */
91#define TX_CON_KAL_SET 0x00800000 /* "connection: keep-alive" is now set */
Willy Tarreau5b154472009-12-21 20:11:07 +010092
Willy Tarreaue8e785b2009-12-26 15:34:26 +010093/* if either of these flags is not set, we may be forced to complete an
94 * connection as a half-way tunnel. For instance, if no content-length
95 * appears in a 1.1 response, but the request is correctly sized.
96 */
97#define TX_REQ_XFER_LEN 0x01000000 /* request xfer size can be determined */
98#define TX_RES_XFER_LEN 0x02000000 /* response xfer size can be determined */
Willy Tarreaufcffa692010-01-10 14:21:19 +010099#define TX_WAIT_NEXT_RQ 0x04000000 /* waiting for the second request to start, use keep-alive timeout */
Willy Tarreau5b154472009-12-21 20:11:07 +0100100
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100101#define TX_HDR_CONN_PRS 0x08000000 /* "connection" header already parsed (req or res), results below */
102#define TX_HDR_CONN_CLO 0x10000000 /* "Connection: close" was present at least once */
103#define TX_HDR_CONN_KAL 0x20000000 /* "Connection: keep-alive" was present at least once */
Willy Tarreau88d349d2010-01-25 12:15:43 +0100104#define TX_USE_PX_CONN 0x40000000 /* Use "Proxy-Connection" instead of "Connection" */
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100105
Willy Tarreau92954fd2010-10-06 19:38:55 +0200106/* used only for keep-alive purposes, to indicate we're on a second transaction */
107#define TX_NOT_FIRST 0x80000000 /* the transaction is not the first one */
108/* no more room for transaction flags ! */
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100109
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100110/* The HTTP parser is more complex than it looks like, because we have to
111 * support multi-line headers and any number of spaces between the colon and
112 * the value.
113 *
114 * All those examples must work :
115
116 Hdr1:val1\r\n
117 Hdr1: val1\r\n
118 Hdr1:\t val1\r\n
119 Hdr1: \r\n
120 val1\r\n
121 Hdr1:\r\n
122 val1\n
123 \tval2\r\n
124 val3\n
125
126 *
127 */
128
Willy Tarreau58f10d72006-12-04 02:26:12 +0100129/* Possible states while parsing HTTP messages (request|response) */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100130#define HTTP_MSG_RQBEFORE 0 // request: leading LF, before start line
131#define HTTP_MSG_RQBEFORE_CR 1 // request: leading CRLF, before start line
132
133/* these ones define a request start line */
134#define HTTP_MSG_RQMETH 2 // parsing the Method
135#define HTTP_MSG_RQMETH_SP 3 // space(s) after the ethod
136#define HTTP_MSG_RQURI 4 // parsing the Request URI
137#define HTTP_MSG_RQURI_SP 5 // space(s) after the Request URI
138#define HTTP_MSG_RQVER 6 // parsing the Request Version
139#define HTTP_MSG_RQLINE_END 7 // end of request line (CR or LF)
140
141#define HTTP_MSG_RPBEFORE 8 // response: leading LF, before start line
142#define HTTP_MSG_RPBEFORE_CR 9 // response: leading CRLF, before start line
143
144/* these ones define a response start line */
145#define HTTP_MSG_RPVER 10 // parsing the Response Version
146#define HTTP_MSG_RPVER_SP 11 // space(s) after the Response Version
147#define HTTP_MSG_RPCODE 12 // response code
148#define HTTP_MSG_RPCODE_SP 13 // space(s) after the response code
149#define HTTP_MSG_RPREASON 14 // response reason
150#define HTTP_MSG_RPLINE_END 15 // end of response line (CR or LF)
151
152/* common header processing */
153
154#define HTTP_MSG_HDR_FIRST 16 // waiting for first header or last CRLF (no LWS possible)
155#define HTTP_MSG_HDR_NAME 17 // parsing header name
156#define HTTP_MSG_HDR_COL 18 // parsing header colon
157#define HTTP_MSG_HDR_L1_SP 19 // parsing header LWS (SP|HT) before value
158#define HTTP_MSG_HDR_L1_LF 20 // parsing header LWS (LF) before value
159#define HTTP_MSG_HDR_L1_LWS 21 // checking whether it's a new header or an LWS
160#define HTTP_MSG_HDR_VAL 22 // parsing header value
161#define HTTP_MSG_HDR_L2_LF 23 // parsing header LWS (LF) inside/after value
162#define HTTP_MSG_HDR_L2_LWS 24 // checking whether it's a new header or an LWS
163
164#define HTTP_MSG_LAST_LF 25 // parsing last LF
Willy Tarreau655dce92009-11-08 13:10:58 +0100165
166/* error state : must be before HTTP_MSG_BODY so that (>=BODY) always indicates
167 * that data are being processed.
168 */
169
170#define HTTP_MSG_ERROR 26 // an error occurred
171
172/* Body processing.
173 * The state HTTP_MSG_BODY is a delimiter to know if we're waiting for headers
174 * or body. All the sub-states below also indicate we're processing the body,
175 * with some additional information.
176 */
177#define HTTP_MSG_BODY 27 // parsing body at end of headers
178#define HTTP_MSG_100_SENT 28 // parsing body after a 100-Continue was sent
179#define HTTP_MSG_CHUNK_SIZE 29 // parsing the chunk size (RFC2616 #3.6.1)
180#define HTTP_MSG_DATA 30 // skipping data chunk / content-length data
181#define HTTP_MSG_DATA_CRLF 31 // skipping CRLF after data chunk
182#define HTTP_MSG_TRAILERS 32 // trailers (post-data entity headers)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100183
Willy Tarreau5523b322009-12-29 12:05:52 +0100184/* we enter this state when we've received the end of the current message */
185#define HTTP_MSG_DONE 33 // message end received, waiting for resync or close
186#define HTTP_MSG_CLOSING 34 // shutdown_w done, not all bytes sent yet
187#define HTTP_MSG_CLOSED 35 // shutdown_w done, all bytes sent
Willy Tarreau610ecce2010-01-04 21:15:02 +0100188#define HTTP_MSG_TUNNEL 36 // tunneled data after DONE
Willy Tarreau58f10d72006-12-04 02:26:12 +0100189
Willy Tarreau79da4692008-11-19 20:03:04 +0100190/* Redirect flags */
191enum {
192 REDIRECT_FLAG_NONE = 0,
193 REDIRECT_FLAG_DROP_QS = 1, /* drop query string */
Willy Tarreau81e3b4f2010-01-10 00:42:19 +0100194 REDIRECT_FLAG_APPEND_SLASH = 2, /* append a slash if missing at the end */
Willy Tarreau79da4692008-11-19 20:03:04 +0100195};
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200196
197/* Redirect types (location, prefix, extended ) */
198enum {
199 REDIRECT_TYPE_NONE = 0, /* no redirection */
200 REDIRECT_TYPE_LOCATION, /* location redirect */
201 REDIRECT_TYPE_PREFIX, /* prefix redirect */
202};
203
Cyril Bonté47fdd8e2010-04-25 00:00:51 +0200204/* Perist types (force-persist, ignore-persist) */
205enum {
206 PERSIST_TYPE_NONE = 0, /* no persistence */
207 PERSIST_TYPE_FORCE, /* force-persist */
208 PERSIST_TYPE_IGNORE, /* ignore-persist */
209};
210
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100211/* Known HTTP methods */
212typedef enum {
213 HTTP_METH_NONE = 0,
214 HTTP_METH_OPTIONS,
215 HTTP_METH_GET,
216 HTTP_METH_HEAD,
217 HTTP_METH_POST,
218 HTTP_METH_PUT,
219 HTTP_METH_DELETE,
220 HTTP_METH_TRACE,
221 HTTP_METH_CONNECT,
222 HTTP_METH_OTHER,
223} http_meth_t;
224
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100225enum {
226 HTTP_AUTH_WRONG = -1, /* missing or unknown */
227 HTTP_AUTH_UNKNOWN = 0,
228 HTTP_AUTH_BASIC,
229 HTTP_AUTH_DIGEST,
230};
231
Willy Tarreauff011f22011-01-06 17:51:27 +0100232enum {
233 HTTP_REQ_ACT_UNKNOWN = 0,
234 HTTP_REQ_ACT_ALLOW,
235 HTTP_REQ_ACT_DENY,
236 HTTP_REQ_ACT_HTTP_AUTH,
237 HTTP_REQ_ACT_MAX
238};
239
Willy Tarreau436d9ed2011-05-11 16:10:11 +0200240/*
241 * All implemented return codes
242 */
243enum {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200244 HTTP_ERR_200 = 0,
245 HTTP_ERR_400,
Willy Tarreau436d9ed2011-05-11 16:10:11 +0200246 HTTP_ERR_403,
247 HTTP_ERR_408,
248 HTTP_ERR_500,
249 HTTP_ERR_502,
250 HTTP_ERR_503,
251 HTTP_ERR_504,
252 HTTP_ERR_SIZE
253};
254
Cyril Bontécf8d9ae2012-04-04 12:57:18 +0200255/* Actions available for the stats admin forms */
256enum {
257 ST_ADM_ACTION_NONE = 0,
258 ST_ADM_ACTION_DISABLE,
259 ST_ADM_ACTION_ENABLE,
260};
261
Cyril Bonté19979e12012-04-04 12:57:21 +0200262/* status codes available for the stats admin page */
263enum {
264 STAT_STATUS_INIT = 0,
265 STAT_STATUS_DENY, /* action denied */
266 STAT_STATUS_DONE, /* the action is successful */
267 STAT_STATUS_ERRP, /* an error occured due to invalid values in parameters */
268 STAT_STATUS_EXCD, /* an error occured because the buffer couldn't store all data */
269 STAT_STATUS_NONE, /* nothing happened (no action chosen or servers state didn't change) */
270 STAT_STATUS_PART, /* the action is partially successful */
271 STAT_STATUS_UNKN, /* an unknown error occured, shouldn't happen */
272 STAT_STATUS_SIZE
273};
274
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100275/* This is an HTTP message, as described in RFC2616. It can be either a request
276 * message or a response message.
277 *
278 * The values there are a little bit obscure, because their meaning can change
279 * during the parsing :
280 *
281 * - som (Start of Message) : relative offset in the buffer of first byte of
282 * the request being processed or parsed. Reset to
Willy Tarreau962c3f42010-01-10 00:15:35 +0100283 * zero during accept(), and changes while parsing
284 * chunks.
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100285 * - eoh (End of Headers) : relative offset in the buffer of first byte that
286 * is not part of a completely processed header.
287 * During parsing, it points to last header seen
Willy Tarreaufa355d42009-11-29 18:12:29 +0100288 * for states after START. When in HTTP_MSG_BODY,
289 * eoh points to the first byte of the last CRLF
290 * preceeding data.
291 * - col and sov : When in HTTP_MSG_BODY, will point to the first
Willy Tarreau1d3bcce2009-12-27 15:50:06 +0100292 * byte of data (relative to buffer).
293 * - sol (start of line) : start of line, also start of message when fully parsed.
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100294 * - eol (End of Line) : relative offset in the buffer of the first byte
295 * which marks the end of the line (LF or CRLF).
Willy Tarreau1d3bcce2009-12-27 15:50:06 +0100296 * Note that all offsets are relative to the beginning of the buffer. To get
Willy Tarreau962c3f42010-01-10 00:15:35 +0100297 * them relative to the current request, subtract ->som or ->sol.
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100298 */
299struct http_msg {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200300 unsigned int msg_state; /* where we are in the current message parsing */
Willy Tarreaufa355d42009-11-29 18:12:29 +0100301 unsigned int col, sov; /* current header: colon, start of value */
302 unsigned int eoh; /* End Of Headers, relative to buffer */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200303 char *sol; /* start of line, also start of message when fully parsed */
304 char *eol; /* end of line */
305 unsigned int som; /* Start Of Message, relative to buffer */
Willy Tarreaufa355d42009-11-29 18:12:29 +0100306 int err_pos; /* err handling: -2=block, -1=pass, 0+=detected */
Willy Tarreau962c3f42010-01-10 00:15:35 +0100307 union { /* useful start line pointers, relative to ->sol */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100308 struct {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200309 int l; /* request line length (not including CR) */
310 int m_l; /* METHOD length (method starts at ->som) */
311 int u, u_l; /* URI, length */
312 int v, v_l; /* VERSION, length */
313 } rq; /* request line : field, length */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100314 struct {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200315 int l; /* status line length (not including CR) */
316 int v_l; /* VERSION length (version starts at ->som) */
317 int c, c_l; /* CODE, length */
318 int r, r_l; /* REASON, length */
319 } st; /* status line : field, length */
320 } sl; /* start line */
Willy Tarreau124d9912011-03-01 20:30:48 +0100321 unsigned long long chunk_len; /* cache for last chunk size or content-length header value */
322 unsigned long long body_len; /* total known length of the body, excluding encoding */
Willy Tarreaufa355d42009-11-29 18:12:29 +0100323 char **cap; /* array of captured headers (may be NULL) */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100324};
325
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100326struct http_auth_data {
327 int method; /* one of HTTP_AUTH_* */
328 struct chunk method_data; /* points to the creditial part from 'Authorization:' header */
329 char *user, *pass; /* extracted username & password */
330};
331
Willy Tarreauff011f22011-01-06 17:51:27 +0100332struct http_req_rule {
333 struct list list;
334 struct acl_cond *cond; /* acl condition to meet */
335 unsigned int action;
336 struct {
337 char *realm;
338 } http_auth;
339};
340
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100341/* This is an HTTP transaction. It contains both a request message and a
342 * response message (which can be empty).
343 */
344struct http_txn {
Willy Tarreau520bbb22010-01-10 11:31:22 +0100345 struct http_msg req; /* HTTP request message */
Willy Tarreauac1932d2011-10-24 19:14:41 +0200346 struct hdr_idx hdr_idx; /* array of header indexes (max: global.tune.max_http_hdr) */
Willy Tarreau520bbb22010-01-10 11:31:22 +0100347 unsigned int flags; /* transaction flags */
348 http_meth_t meth; /* HTTP method */
349
350 int status; /* HTTP status from the server, negative if from proxy */
351 struct http_msg rsp; /* HTTP response message */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100352
Willy Tarreau520bbb22010-01-10 11:31:22 +0100353 char *uri; /* first line if log needed, NULL otherwise */
354 char *cli_cookie; /* cookie presented by the client, in capture mode */
355 char *srv_cookie; /* cookie presented by the server, in capture mode */
Willy Tarreaua3377ee2010-01-10 10:49:11 +0100356 char *sessid; /* the appsession id, if found in the request or in the response */
Willy Tarreauf64d1412010-10-07 20:06:11 +0200357 int cookie_first_date; /* if non-zero, first date the expirable cookie was set/seen */
358 int cookie_last_date; /* if non-zero, last date the expirable cookie was set/seen */
Willy Tarreau520bbb22010-01-10 11:31:22 +0100359
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100360 struct http_auth_data auth; /* HTTP auth data */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100361};
362
Willy Tarreau33a7e692007-06-10 19:45:56 +0200363/* This structure is used by http_find_header() to return values of headers.
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200364 * The header starts at <line>, the value (excluding leading and trailing white
365 * spaces) at <line>+<val> for <vlen> bytes, followed by optional <tws> trailing
366 * white spaces, and sets <line>+<del> to point to the last delimitor (colon or
367 * comma) before this value. <prev> points to the index of the header whose next
368 * is this one.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200369 */
370struct hdr_ctx {
Willy Tarreau68085d82010-01-18 14:54:04 +0100371 char *line;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200372 int idx;
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200373 int val; /* relative to line, may skip some leading white spaces */
374 int vlen; /* relative to line+val, stops before trailing white spaces */
375 int tws; /* added to vlen if some trailing white spaces are present */
Willy Tarreau68085d82010-01-18 14:54:04 +0100376 int del; /* relative to line */
377 int prev; /* index of previous header */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200378};
Willy Tarreau58f10d72006-12-04 02:26:12 +0100379
Willy Tarreaubaaee002006-06-26 02:48:02 +0200380#endif /* _TYPES_PROTO_HTTP_H */
381
382/*
383 * Local variables:
384 * c-indent-level: 8
385 * c-basic-offset: 8
386 * End:
387 */