# File lib/cool.io/http_client.rb, line 362
    def process_chunk_footer
      return false if @data.size < 2

      if @data.read(2) == CRLF
        @state = :chunk_header
      else
        on_error "non-CRLF chunk footer"
        @state = :invalid
      end

      true
    end