|
Apache HTTPD
|
#include "httpd.h"#include "http_config.h"#include "http_log.h"#include "http_core.h"#include "apr_lib.h"#include "apr_strings.h"#include "apr_general.h"#include "util_filter.h"#include "apr_buckets.h"#include "http_protocol.h"#include "http_request.h"#include "http_ssl.h"#include "apr_want.h"#include "zlib.h"Go to the source code of this file.
Classes | |
| struct | deflate_filter_config_t |
| struct | deflate_dirconf_t |
| struct | deflate_ctx_t |
Macros | |
| #define | ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */ |
| #define | HEAD_CRC 0x02 /* bit 1 set: header CRC present */ |
| #define | EXTRA_FIELD 0x04 /* bit 2 set: extra field present */ |
| #define | ORIG_NAME 0x08 /* bit 3 set: original file name present */ |
| #define | COMMENT 0x10 /* bit 4 set: file comment present */ |
| #define | RESERVED 0xE0 /* bits 5..7: reserved */ |
| #define | APR_WANT_STRFUNC |
| #define | AP_INFLATE_RATIO_LIMIT 200 |
| #define | AP_INFLATE_RATIO_BURST 3 |
| #define | AP_DEFLATE_ETAG_ADDSUFFIX 0 |
| #define | AP_DEFLATE_ETAG_NOCHANGE 1 |
| #define | AP_DEFLATE_ETAG_REMOVE 2 |
| #define | DEFAULT_COMPRESSION Z_DEFAULT_COMPRESSION |
| #define | DEFAULT_WINDOWSIZE -15 |
| #define | DEFAULT_MEMLEVEL 9 |
| #define | DEFAULT_BUFFERSIZE 8096 |
| #define | VALIDATION_SIZE 8 |
| #define | NO_UPDATE_CRC 0 |
| #define | UPDATE_CRC 1 |
| #define | PROTO_FLAGS AP_FILTER_PROTO_CHANGE|AP_FILTER_PROTO_CHANGE_LENGTH |
Typedefs | |
| typedef struct deflate_filter_config_t | deflate_filter_config |
| typedef struct deflate_dirconf_t | deflate_dirconf_t |
| typedef struct deflate_ctx_t | deflate_ctx |
Variables | |
| static const char | deflateFilterName [] = "DEFLATE" |
| static const char | gzip_header [10] |
| static const char | deflate_magic [2] = { '\037', '\213' } |
| static const command_rec | deflate_filter_cmds [] |
| static int *const | aplog_module_index = &( deflate_module.module_index) |
| #define AP_DEFLATE_ETAG_ADDSUFFIX 0 |
Definition at line 60 of file mod_deflate.c.
| #define AP_DEFLATE_ETAG_NOCHANGE 1 |
Definition at line 61 of file mod_deflate.c.
| #define AP_DEFLATE_ETAG_REMOVE 2 |
Definition at line 62 of file mod_deflate.c.
| #define AP_INFLATE_RATIO_BURST 3 |
Definition at line 58 of file mod_deflate.c.
| #define AP_INFLATE_RATIO_LIMIT 200 |
Definition at line 57 of file mod_deflate.c.
| #define APR_WANT_STRFUNC |
Definition at line 49 of file mod_deflate.c.
Definition at line 29 of file mod_deflate.c.
Definition at line 33 of file mod_deflate.c.
| #define DEFAULT_BUFFERSIZE 8096 |
Definition at line 101 of file mod_deflate.c.
| #define DEFAULT_COMPRESSION Z_DEFAULT_COMPRESSION |
Definition at line 98 of file mod_deflate.c.
| #define DEFAULT_MEMLEVEL 9 |
Definition at line 100 of file mod_deflate.c.
| #define DEFAULT_WINDOWSIZE -15 |
Definition at line 99 of file mod_deflate.c.
Definition at line 31 of file mod_deflate.c.
Definition at line 30 of file mod_deflate.c.
| #define NO_UPDATE_CRC 0 |
Definition at line 415 of file mod_deflate.c.
Definition at line 32 of file mod_deflate.c.
| #define PROTO_FLAGS AP_FILTER_PROTO_CHANGE|AP_FILTER_PROTO_CHANGE_LENGTH |
Definition at line 1908 of file mod_deflate.c.
Definition at line 34 of file mod_deflate.c.
| #define UPDATE_CRC 1 |
Definition at line 417 of file mod_deflate.c.
| #define VALIDATION_SIZE 8 |
Definition at line 413 of file mod_deflate.c.
|
static |
Definition at line 107 of file mod_deflate.c.
|
static |
Definition at line 536 of file mod_deflate.c.
|
static |
Definition at line 419 of file mod_deflate.c.
|
static |
Definition at line 1047 of file mod_deflate.c.
|
static |
Definition at line 221 of file mod_deflate.c.
|
static |
Definition at line 209 of file mod_deflate.c.
|
static |
Definition at line 500 of file mod_deflate.c.
|
static |
Definition at line 485 of file mod_deflate.c.
|
static |
Definition at line 1138 of file mod_deflate.c.
|
static |
Definition at line 561 of file mod_deflate.c.
|
static |
Definition at line 246 of file mod_deflate.c.
|
static |
Definition at line 326 of file mod_deflate.c.
Definition at line 303 of file mod_deflate.c.
|
static |
Definition at line 344 of file mod_deflate.c.
|
static |
Definition at line 376 of file mod_deflate.c.
|
static |
Definition at line 360 of file mod_deflate.c.
Definition at line 286 of file mod_deflate.c.
|
static |
Definition at line 261 of file mod_deflate.c.
|
static |
Definition at line 229 of file mod_deflate.c.
|
static |
Definition at line 441 of file mod_deflate.c.
Definition at line 201 of file mod_deflate.c.
|
static |
Definition at line 551 of file mod_deflate.c.
|
static |
Definition at line 1542 of file mod_deflate.c.
|
static |
< Module has handled this stage.
Definition at line 1901 of file mod_deflate.c.
Definition at line 191 of file mod_deflate.c.
|
static |
Definition at line 1909 of file mod_deflate.c.
Definition at line 1945 of file mod_deflate.c.
|
static |
Definition at line 1920 of file mod_deflate.c.
Definition at line 95 of file mod_deflate.c.
Definition at line 54 of file mod_deflate.c.
Definition at line 88 of file mod_deflate.c.