blob: 1ca7902f9a15002112a376075967779f4a140b3d [file] [log] [blame]
Christopher Faulet47596d32018-10-22 09:17:28 +02001/*
2 * include/types/http_htx.h
3 * This file defines function prototypes for HTTP manipulation using the
4 * internal 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 _PROTO_HTTP_HTX_H
24#define _PROTO_HTTP_HTX_H
25
26#include <common/buf.h>
27
28#include <types/h1.h>
29#include <types/http_htx.h>
30
31union h1_sl http_find_stline(const struct htx *htx);
32int http_find_header(const struct htx *htx, const struct ist name, struct http_hdr_ctx *ctx, int full);
33int http_add_header(struct htx *htx, const struct ist n, const struct ist v);
34int http_replace_reqline(struct htx *htx, const union h1_sl sl);
35int http_replace_resline(struct htx *htx, const union h1_sl sl);
36int http_replace_header_value(struct htx *htx, struct http_hdr_ctx *ctx, const struct ist data);
37int http_replace_header(struct htx *htx, struct http_hdr_ctx *ctx, const struct ist name, const struct ist value);
38int http_remove_header(struct htx *htx, struct http_hdr_ctx *ctx);
39
40#endif /* _PROTO_HTTP_HTX_H */