blob: bcbcaef8e67ae24b3b5ce00fc706592dc495c3ae [file] [log] [blame]
Tim Duesterhus0ee1ad52021-04-15 21:45:56 +02001/*
2 * include/haproxy/uri_normalizer.h
3 * HTTP request URI normalization.
4 *
5 * Copyright 2021 Tim Duesterhus <tim@bastelstu.be>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
14#ifndef _HAPROXY_URI_NORMALIZER_T_H
15#define _HAPROXY_URI_NORMALIZER_T_H
16
17enum uri_normalizer_err {
18 URI_NORMALIZER_ERR_NONE = 0,
19 URI_NORMALIZER_ERR_ALLOC,
20 URI_NORMALIZER_ERR_INVALID_INPUT,
21 URI_NORMALIZER_ERR_INTERNAL_ERROR = 0xdead,
22};
23
24#endif /* _HAPROXY_URI_NORMALIZER_T_H */
25
26/*
27 * Local variables:
28 * c-indent-level: 8
29 * c-basic-offset: 8
30 * End:
31 */