blob: e631bc03a9b11949c3c4d5bac4ae970608f2df6e [file] [log] [blame]
Willy Tarreau79e57332018-10-02 16:01:16 +02001/*
2 * include/proto/http_fetch.h
3 * This file contains the minimally required http sample fetch declarations.
4 *
5 * Copyright (C) 2000-2018 Willy Tarreau - w@1wt.eu
6 *
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 */
21
22#ifndef _PROTO_HTTP_FETCH_H
23#define _PROTO_HTTP_FETCH_H
24
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020025#include <haproxy/api.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020026#include <haproxy/htx.h>
Willy Tarreauaa74c4e2020-06-04 10:19:23 +020027#include <haproxy/arg-t.h>
Christopher Faulet6d1dd462019-07-15 14:36:03 +020028#include <types/channel.h>
Christopher Faulet778f5ed2020-04-29 15:51:55 +020029#include <types/checks.h>
Christopher Faulet6d1dd462019-07-15 14:36:03 +020030#include <types/sample.h>
Willy Tarreau79e57332018-10-02 16:01:16 +020031
Christopher Faulet778f5ed2020-04-29 15:51:55 +020032struct htx *smp_prefetch_htx(struct sample *smp, struct channel *chn, struct check *check, int vol);
Willy Tarreau79e57332018-10-02 16:01:16 +020033int val_hdr(struct arg *arg, char **err_msg);
34
35
36#endif /* _PROTO_HTTP_FETCH_H */
37
38/*
39 * Local variables:
40 * c-indent-level: 8
41 * c-basic-offset: 8
42 * End:
43 */