xref: /lighttpd1.4/src/http_range.h (revision 25f83b84)
1 /*
2  * http_range - HTTP Range (RFC 7233)
3  *
4  * Copyright(c) 2015,2021 Glenn Strauss gstrauss()gluelogic.com  All rights reserved
5  * License: BSD 3-clause (same as lighttpd)
6  */
7 #ifndef INCLUDED_RANGE_H
8 #define INCLUDED_RANGE_H
9 #include "first.h"
10 
11 #include "base_decls.h"
12 
13 
14 __attribute_cold__
15 void http_range_config_allow_http10 (int flag);
16 
17 int http_range_rfc7233 (request_st *r);
18 
19 
20 #endif
21