blob: 3f9a7f4b0787abdad7418e0d132116be152c3af6 [file] [log] [blame]
Christopher Faulet47596d32018-10-22 09:17:28 +02001/*
2 * include/types/http_htx.h
3 * This file defines everything related to HTTP manipulation using the internal
4 * representation.
5 *
6 * Copyright (C) 2018 HAProxy Technologies, Christopher Faulet <cfaulet@haproxy.com>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation, version 2.1
11 * exclusively.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23#ifndef _TYPES_HTTP_HTX_H
24#define _TYPES_HTTP_HTX_H
25
Willy Tarreaub96b77e2018-12-11 10:22:41 +010026#include <common/htx.h>
Christopher Faulet47596d32018-10-22 09:17:28 +020027#include <common/ist.h>
Christopher Faulet47596d32018-10-22 09:17:28 +020028
29/* Context used to find/remove an HTTP header. */
30struct http_hdr_ctx {
31 struct htx_blk *blk;
32 struct ist value;
33 uint16_t lws_before;
34 uint16_t lws_after;
35};
36
37#endif /* _TYPES_HTTP_HTX_H */