mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-11 22:15:14 +00:00
3d97c90974
HTTP compression will be moved in a true filter. To prepare the ground, some functions have been moved in a dedicated file. Idea is to keep everything about compression algos in compression.c and everything related to the filtering in flt_http_comp.c. For now, a header has been added to help during the transition. It will be removed later. Unused empty ACL keyword list was removed. The "compression" keyword parser was moved from cfgparse.c to flt_http_comp.c.
45 lines
1.3 KiB
C
45 lines
1.3 KiB
C
/*
|
|
* include/proto/compression.h
|
|
* This file defines function prototypes for compression.
|
|
*
|
|
* Copyright 2012 (C) Exceliance, David Du Colombier <dducolombier@exceliance.fr>
|
|
* William Lallemand <wlallemand@exceliance.fr>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation, version 2.1
|
|
* exclusively.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef _PROTO_COMP_H
|
|
#define _PROTO_COMP_H
|
|
|
|
#include <types/compression.h>
|
|
|
|
extern unsigned int compress_min_idle;
|
|
|
|
int comp_append_type(struct comp *comp, const char *type);
|
|
int comp_append_algo(struct comp *comp, const char *algo);
|
|
|
|
#ifdef USE_ZLIB
|
|
extern long zlib_used_memory;
|
|
#endif /* USE_ZLIB */
|
|
|
|
#endif /* _PROTO_COMP_H */
|
|
|
|
/*
|
|
* Local variables:
|
|
* c-indent-level: 8
|
|
* c-basic-offset: 8
|
|
* End:
|
|
*/
|