class HTTP::Response::Parser

def initialize

def initialize
  @state  = HttpParser::Parser.new_instance { |i| i.type = :response }
  @parser = HttpParser::Parser.new(self)
  reset
end