[core] clean up srv before exiting for lighttpd -[vVh]
[lighttpd/svnmirror.git] / src / http_chunk.h
blobeaa771a4e2cc2ec7f6b31f917a1ef4f426390c05
1 #ifndef _HTTP_CHUNK_H_
2 #define _HTTP_CHUNK_H_
3 #include "first.h"
5 #include "server.h"
6 #include <sys/types.h>
8 void http_chunk_append_mem(server *srv, connection *con, const char * mem, size_t len); /* copies memory */
9 void http_chunk_append_buffer(server *srv, connection *con, buffer *mem); /* may reset "mem" */
10 void http_chunk_append_file(server *srv, connection *con, buffer *fn, off_t offset, off_t len); /* copies "fn" */
11 void http_chunk_close(server *srv, connection *con);
13 #endif