You cannot 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
289 B
C
10 lines
289 B
C
#ifndef _LIGHTTPD_FILTER_CHUNKED_H_
|
|
#define _LIGHTTPD_FILTER_CHUNKED_H_
|
|
|
|
#include <lighttpd/base.h>
|
|
|
|
LI_API handler_t filter_chunked_encode(connection *con, chunkqueue *out, chunkqueue *in);
|
|
LI_API handler_t filter_chunked_decode(connection *con, chunkqueue *out, chunkqueue *in);
|
|
|
|
#endif
|