class Protocol::HTTP::Body::ZStream

def initialize(body, stream)

@parameter stream [Zlib::Deflate | Zlib::Inflate] the stream to use for compression or decompression.
@parameter body [Readable] the body to wrap.

Initialize the body with the given stream.
def initialize(body, stream)
	super(body)
	
	@stream = stream
	
	@input_length = 0
	@output_length = 0
end