blob: 6f1a26a0b00df763176e3f384a25437041b2ec50 [file] [log] [blame]
William Lallemand82fe75c2012-10-23 10:25:10 +02001/*
2 * include/proto/compression.h
3 * This file defines function prototypes for compression.
4 *
5 * Copyright 2012 (C) Exceliance, David Du Colombier <dducolombier@exceliance.fr>
6 * William Lallemand <wlallemand@exceliance.fr>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation, version 2.1
11 * exclusively.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23#ifndef _PROTO_COMP_H
24#define _PROTO_COMP_H
25
26#include <types/compression.h>
27
28int comp_append_type(struct comp *comp, const char *type);
29int comp_append_algo(struct comp *comp, const char *algo);
30
31int http_emit_chunk_size(char *out, unsigned int chksz, int add_crlf);
32int http_compression_buffer_init(struct session *s, struct buffer *in, struct buffer *out);
33int http_compression_buffer_add_data(struct session *s, struct buffer *in, struct buffer *out);
34int http_compression_buffer_end(struct session *s, struct buffer **in, struct buffer **out, int end);
35
36int identity_init(void *v, int level);
37int identity_add_data(void *v, const char *in_data, int in_len, char *out_data, int out_len);
38int identity_flush(void *comp_ctx, struct buffer *out, int flag);
39int identity_reset(void *comp_ctx);
40int identity_end(void *comp_ctx);
41
42
43#ifdef USE_ZLIB
44
45int deflate_init(void *comp_ctx, int level);
46int deflate_add_data(void *v, const char *in_data, int in_len, char *out_data, int out_len);
47int deflate_flush(void *comp_ctx, struct buffer *out, int flag);
48int deflate_reset(void *comp_ctx);
49int deflate_end(void *comp_ctx);
50
51int gzip_init(void *comp_ctx, int level);
52int gzip_add_data(void *v, const char *in_data, int in_len, char *out_data, int out_len);
53int gzip_flush(void *comp_ctx, struct buffer *out, int flag);
54int gzip_reset(void *comp_ctx);
55int gzip_end(void *comp_ctx);
56
57#endif /* USE_ZLIB */
58
59#endif /* _PROTO_COMP_H */
60
61/*
62 * Local variables:
63 * c-indent-level: 8
64 * c-basic-offset: 8
65 * End:
66 */