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.
12 lines
347 B
12 lines
347 B
#ifndef _REQUEST_H_ |
|
#define _REQUEST_H_ |
|
#include "first.h" |
|
|
|
#include "base_decls.h" |
|
#include "buffer.h" |
|
|
|
int http_request_parse(connection *con, char *hdrs, const unsigned short *hloffsets); |
|
int http_request_host_normalize(buffer *b, int scheme_port); |
|
int http_request_host_policy(buffer *b, unsigned int http_parseopts, int scheme_port); |
|
|
|
#endif
|
|
|