lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
322 B
18 lines
322 B
1 year ago
|
/*
|
||
|
* 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"
|
||
|
|
||
|
|
||
|
int http_range_rfc7233 (request_st *r);
|
||
|
|
||
|
|
||
|
#endif
|