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.
|
#ifndef _LIGHTTPD_FILTER_CHUNKED_H_
|
|
#define _LIGHTTPD_FILTER_CHUNKED_H_
|
|
|
|
#include "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
|