File: uri_normalizer-t.h

package info (click to toggle)
haproxy 3.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 24,600 kB
  • sloc: ansic: 275,217; sh: 3,607; xml: 1,756; python: 1,345; makefile: 1,162; perl: 168; cpp: 21
file content (31 lines) | stat: -rw-r--r-- 753 bytes parent folder | download | duplicates (4)
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
/*
 * include/haproxy/uri_normalizer.h
 * HTTP request URI normalization.
 *
 * Copyright 2021 Tim Duesterhus <tim@bastelstu.be>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 *
 */

#ifndef _HAPROXY_URI_NORMALIZER_T_H
#define _HAPROXY_URI_NORMALIZER_T_H

enum uri_normalizer_err {
	URI_NORMALIZER_ERR_NONE = 0,
	URI_NORMALIZER_ERR_ALLOC,
	URI_NORMALIZER_ERR_INVALID_INPUT,
	URI_NORMALIZER_ERR_INTERNAL_ERROR = 0xdead,
};

#endif /* _HAPROXY_URI_NORMALIZER_T_H */

/*
 * Local variables:
 *  c-indent-level: 8
 *  c-basic-offset: 8
 * End:
 */