Module: Zlib

Defined in:
lib/archive/support/zlib.rb

Overview

:nodoc:

Constant Summary collapse

MAX_WBITS =

The maximum size of the zlib history buffer. Note that zlib allows larger values to enable different inflate modes. See Zlib::Inflate.new for details. Provided here only for Ruby versions that do not provide it.

Deflate::MAX_WBITS
RLE =

A deflate strategy which limits match distances to 1, also known as run-length encoding. Provided here only for Ruby versions that do not provide it.

3
FIXED =

A deflate strategy which does not use dynamic Huffman codes, allowing for a simpler decoder to be used to inflate. Provided here only for Ruby versions that do not provide it.

4