class Protocol::HTTP::Header::Connection

def upgrade?

@returns [Boolean] whether the `upgrade` directive is present, indicating that the connection should be upgraded to a different protocol.
def upgrade?
	self.include?(UPGRADE)
end