blob: 562e703c0af52682a7e11b7ab0d1df3aba221e91 [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
25#include <common/config.h>
Christopher Faulet6d1dd462019-07-15 14:36:03 +020026#include <common/htx.h>
27#include <types/arg.h>
28#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 */