Tor
0.4.7.0-alpha-dev
|
Data Fields | |
struct z_stream_s | stream |
int | compress |
size_t | input_so_far |
size_t | output_so_far |
size_t | allocation |
Internal zlib state for an incremental compression/decompression. The body of this struct is not exposed.
Internal state for an incremental zlib/gzip compression/decompression.
Definition at line 110 of file compress_zlib.c.
size_t allocation |
Approximate number of bytes allocated for this object.
Definition at line 120 of file compress_zlib.c.
Referenced by tor_zlib_compress_free_(), and tor_zlib_compress_state_size().
int compress |
True if we are compressing; false if we are inflating
Definition at line 112 of file compress_zlib.c.
Referenced by tor_zlib_compress_free_().
size_t input_so_far |
Number of bytes read so far. Used to detect zlib bombs.
Definition at line 115 of file compress_zlib.c.
size_t output_so_far |
Number of bytes written so far. Used to detect zlib bombs.
Definition at line 117 of file compress_zlib.c.
struct z_stream_s stream |
The zlib stream
Definition at line 301 of file compress_zlib.c.
Referenced by tor_zlib_compress_free_().