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