blob: c9f730ebc7e4c0db68d9c9175c127923183502ba [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);
Christopher Faulete010c802018-10-24 10:36:45 +020036int http_replace_req_meth(struct htx *htx, const struct ist meth);
37int http_replace_req_uri(struct htx *htx, const struct ist uri);
38int http_replace_req_path(struct htx *htx, const struct ist path);
39int http_replace_req_query(struct htx *htx, const struct ist query);
40int http_replace_res_status(struct htx *htx, const struct ist status);
41int http_replace_res_reason(struct htx *htx, const struct ist reason);
Christopher Faulet47596d32018-10-22 09:17:28 +020042int http_replace_header_value(struct htx *htx, struct http_hdr_ctx *ctx, const struct ist data);
43int http_replace_header(struct htx *htx, struct http_hdr_ctx *ctx, const struct ist name, const struct ist value);
44int http_remove_header(struct htx *htx, struct http_hdr_ctx *ctx);
45
46#endif /* _PROTO_HTTP_HTX_H */