class Protocol::HTTP::Body::Inflate

def self.for(body, window_size = GZIP)

@parameter window_size [Integer] the window size to use for decompression.
@parameter body [Readable] the body to wrap.

Create a new body which decompresses the given body using the GZIP algorithm by default.
def self.for(body, window_size = GZIP)
	self.new(body, Zlib::Inflate.new(window_size))
end