blob: 3c0d1109455f1c31ffaef8aefaa187313de04445 [file] [log] [blame]
Miroslav Zagorac70230c62020-12-09 16:54:31 +01001/***
2 * Copyright 2020 HAProxy Technologies
3 *
4 * This file is part of the HAProxy OpenTracing filter.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 */
20#ifndef _OPENTRACING_INCLUDE_H_
21#define _OPENTRACING_INCLUDE_H_
22
23#include <errno.h>
24#include <stdbool.h>
25
26#include <haproxy/api.h>
27#include <haproxy/cfgparse.h>
28#include <haproxy/acl.h>
29#include <haproxy/cli.h>
30#include <haproxy/filters.h>
31#include <haproxy/http_htx.h>
32#include <haproxy/http_rules.h>
33#include <haproxy/log.h>
34#include <haproxy/sample.h>
35#include <haproxy/tcp_rules.h>
36#include <haproxy/vars.h>
37
38#include "config.h"
39#include "debug.h"
40#include "define.h"
41#include "cli.h"
42#include "event.h"
43#include "conf.h"
44#include "filter.h"
45#include "group.h"
46#include "http.h"
47#include "opentracing.h"
48#include "parser.h"
49#include "pool.h"
50#include "scope.h"
51#include "util.h"
52#include "vars.h"
53
54#endif /* _OPENTRACING_INCLUDE_H_ */
55
56/*
57 * Local variables:
58 * c-indent-level: 8
59 * c-basic-offset: 8
60 * End:
61 *
62 * vi: noexpandtab shiftwidth=8 tabstop=8
63 */