blob: 0eaa21604046e6283b07ef3cc51ba2383a7f84d0 [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
William Lallemand8b52bb32012-11-16 18:06:41 +010036int identity_init(struct comp_ctx **comp_ctx, int level);
William Lallemandbf3ae612012-11-19 12:35:37 +010037int identity_add_data(struct comp_ctx *comp_ctx, const char *in_data, int in_len, struct buffer *out);
William Lallemand1c2d6222012-10-30 15:52:53 +010038int identity_flush(struct comp_ctx *comp_ctx, struct buffer *out, int flag);
39int identity_reset(struct comp_ctx *comp_ctx);
William Lallemand8b52bb32012-11-16 18:06:41 +010040int identity_end(struct comp_ctx **comp_ctx);
William Lallemand82fe75c2012-10-23 10:25:10 +020041
42
43#ifdef USE_ZLIB
William Lallemande3a7d992012-11-20 11:25:20 +010044extern long zlib_used_memory;
45
William Lallemand8b52bb32012-11-16 18:06:41 +010046int deflate_init(struct comp_ctx **comp_ctx, int level);
William Lallemandbf3ae612012-11-19 12:35:37 +010047int deflate_add_data(struct comp_ctx *comp_ctx, const char *in_data, int in_len, struct buffer *out);
William Lallemand1c2d6222012-10-30 15:52:53 +010048int deflate_flush(struct comp_ctx *comp_ctx, struct buffer *out, int flag);
49int deflate_reset(struct comp_ctx *comp_ctx);
William Lallemand8b52bb32012-11-16 18:06:41 +010050int deflate_end(struct comp_ctx **comp_ctx);
William Lallemand82fe75c2012-10-23 10:25:10 +020051
William Lallemand8b52bb32012-11-16 18:06:41 +010052int gzip_init(struct comp_ctx **comp_ctx, int level);
William Lallemand82fe75c2012-10-23 10:25:10 +020053#endif /* USE_ZLIB */
54
55#endif /* _PROTO_COMP_H */
56
57/*
58 * Local variables:
59 * c-indent-level: 8
60 * c-basic-offset: 8
61 * End:
62 */