# File lib/ftw/response.rb, line 94
  def upgrade?
    return false unless status == 101 # "Switching Protocols"
    return false unless headers["Connection"] == "Upgrade"
    return true
  end