# File lib/faye/adapters/thin.rb, line 32
  def process
    if @serving != :websocket and @request.websocket?
      @serving = :websocket
    end
    if @request.socket_connection?
      @request.env['em.connection'] = self
      @response.persistent!
      @response.async = true
    end
    thin_process
  end