class Protocol::HTTP::Header::Connection

def << value

def << value
	super(value.downcase)
end

def close?

def close?
	self.include?(CLOSE)
end

def initialize(value = nil)

def initialize(value = nil)
	super(value&.downcase)
end

def keep_alive?

def keep_alive?
	self.include?(KEEP_ALIVE) && !close?
end

def upgrade?

def upgrade?
	self.include?(UPGRADE)
end