diff options
author | jakabosky <jakabosky@152afb58-edef-0310-8abb-c4023f1b3aa9> | 2007-01-05 04:43:40 +0000 |
---|---|---|
committer | jakabosky <jakabosky@152afb58-edef-0310-8abb-c4023f1b3aa9> | 2007-01-05 04:43:40 +0000 |
commit | 17c33240f36dc2ef272157e09756e783561fc1f9 (patch) | |
tree | 955542b44469db707883a3507e95e99a3c678f70 /src/chunk.h | |
parent | bc1cc7ed8e14ac76217b1a7a6f845cdf11dbad2b (diff) | |
download | lighttpd-17c33240f36dc2ef272157e09756e783561fc1f9.tar.gz |
Moved HTTP/1.1 chunk encoding into plugin mod_chunked
Created filter chain API for mod_chunked and mod_deflate.
Added new handle_filter_response_content hook to plugin API.
git-svn-id: svn://svn.lighttpd.net/lighttpd/trunk@1502 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'src/chunk.h')
-rw-r--r-- | src/chunk.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/chunk.h b/src/chunk.h index 1fce9d5b..77b02dea 100644 --- a/src/chunk.h +++ b/src/chunk.h @@ -67,6 +67,7 @@ chunk * chunkqueue_get_append_tempfile(chunkqueue *cq); int chunkqueue_steal_tempfile(chunkqueue *cq, chunk *in); int chunkqueue_steal_chunk(chunkqueue *cq, chunk *c); int chunkqueue_steal_chunks_len(chunkqueue *cq, chunk *c, size_t max_len); +int chunkqueue_steal_all_chunks(chunkqueue *cq, chunkqueue *in); int chunkqueue_skip(chunkqueue *cq, off_t skip); void chunkqueue_remove_empty_last_chunk(chunkqueue *cq); |