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.
10 lines
319 B
10 lines
319 B
#ifndef _LIGHTTPD_FILTER_CHUNKED_H_
|
|
#define _LIGHTTPD_FILTER_CHUNKED_H_
|
|
|
|
#include <lighttpd/base.h>
|
|
|
|
LI_API liHandlerResult li_filter_chunked_encode(liConnection *con, liChunkQueue *out, liChunkQueue *in);
|
|
LI_API liHandlerResult li_filter_chunked_decode(liConnection *con, liChunkQueue *out, liChunkQueue *in);
|
|
|
|
#endif
|