the upcoming 2.0 version
https://redmine.lighttpd.net/projects/lighttpd2
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.
15 lines
450 B
15 lines
450 B
#ifndef _LIGHTTPD_FILTER_CHUNKED_H_ |
|
#define _LIGHTTPD_FILTER_CHUNKED_H_ |
|
|
|
#include <lighttpd/base.h> |
|
|
|
/* initialize with zero */ |
|
typedef struct { |
|
int parse_state; |
|
goffset cur_chunklen; |
|
} liFilterDecodeState; |
|
|
|
LI_API liHandlerResult li_filter_chunked_encode(liVRequest *vr, liChunkQueue *out, liChunkQueue *in); |
|
LI_API liHandlerResult li_filter_chunked_decode(liVRequest *vr, liChunkQueue *out, liChunkQueue *in, liFilterDecodeState *state); |
|
|
|
#endif
|
|
|