class PermessageDeflate::Session

def get_inflate

def get_inflate
  return @inflate if @inflate
  window_bits = [@peer_window_bits, MIN_WINDOW_BITS].max
  inflate     = Zlib::Inflate.new(-window_bits)
  @inflate = inflate if @peer_context_takeover
  inflate
end