Annotation of embedaddon/lighttpd/src/http_chunk.h, revision 1.1.1.2
1.1 misho 1: #ifndef _HTTP_CHUNK_H_
2: #define _HTTP_CHUNK_H_
1.1.1.2 ! misho 3: #include "first.h"
1.1 misho 4:
5: #include "server.h"
6: #include <sys/types.h>
7:
1.1.1.2 ! misho 8: int http_chunk_append_mem(server *srv, connection *con, const char * mem, size_t len); /* copies memory */
! 9: int http_chunk_append_buffer(server *srv, connection *con, buffer *mem); /* may reset "mem" */
! 10: int http_chunk_append_file(server *srv, connection *con, buffer *fn); /* copies "fn" */
! 11: int http_chunk_append_file_range(server *srv, connection *con, buffer *fn, off_t offset, off_t len); /* copies "fn" */
! 12: void http_chunk_close(server *srv, connection *con);
1.1 misho 13:
14: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>