class Protocol::HTTP::Header::Connection

def << value

@parameter value [String] the directive to add.

Adds a directive to the `connection` header. The value will be normalized to lowercase before being added.
def << value
	super(value.downcase)
end