summaryrefslogtreecommitdiffstats
path: root/include/haproxy/http_ext.h
blob: 53764a26c0822e8879f35e2452cbf74ca21bddc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
 * include/haproxy/http_ext.h
 * Functions for Version-agnostic and implementation-agnostic HTTP extensions
 *
 * Copyright 2022 HAProxy Technologies
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation, version 2.1
 * exclusively.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

#ifndef _HAPROXY_HTTPEXT_H
#define _HAPROXY_HTTPEXT_H

#include <haproxy/http_ext-t.h>
#include <haproxy/channel-t.h>
#include <haproxy/proxy-t.h>
#include <haproxy/stream-t.h>

int http_validate_7239_header(struct ist hdr, int required_steps, struct forwarded_header_ctx *ctx);

int http_handle_7239_header(struct stream *s, struct channel *req);
int http_handle_xff_header(struct stream *s, struct channel *req);
int http_handle_xot_header(struct stream *s, struct channel *req);

int proxy_http_parse_7239(char **args, int cur_arg, struct proxy *curproxy, const struct proxy *defpx, const char *file, int linenum);
int proxy_http_compile_7239(struct proxy *curproxy);
int proxy_http_parse_xff(char **args, int cur_arg, struct proxy *curproxy, const struct proxy *defpx, const char *file, int linenum);
int proxy_http_parse_xot(char **args, int cur_arg, struct proxy *curproxy, const struct proxy *defpx, const char *file, int linenum);

int http_ext_7239_prepare(struct proxy *cur);
int http_ext_xff_prepare(struct proxy *cur);
int http_ext_xot_prepare(struct proxy *cur);

void http_ext_7239_dup(const struct proxy *def, struct proxy *cpy);
void http_ext_xff_dup(const struct proxy *def, struct proxy *cpy);
void http_ext_xot_dup(const struct proxy *def, struct proxy *cpy);

void http_ext_7239_clean(struct proxy *cur);
void http_ext_xff_clean(struct proxy *cur);
void http_ext_xot_clean(struct proxy *cur);

int http_ext_prepare(struct proxy *cur);
void http_ext_dup(const struct proxy *def, struct proxy *cpy);
void http_ext_clean(struct proxy *cur);
void http_ext_softclean(struct proxy *cur);

#endif /* !_HAPROXY_HTTPEXT_H */