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
306 B
C
10 lines
306 B
C
#ifndef _LIGHTTPD_FILTER_CHUNKED_H_
|
|
#define _LIGHTTPD_FILTER_CHUNKED_H_
|
|
|
|
#include "base.h"
|
|
|
|
LI_API handler_t filter_chunked_encode(server *srv, connection *con, chunkqueue *out, chunkqueue *in);
|
|
LI_API handler_t filter_chunked_decode(server *srv, connection *con, chunkqueue *out, chunkqueue *in);
|
|
|
|
#endif
|