class Protocol::HTTP::Headers

def add(key, value)

@parameter value [String] the header value to assign.
@parameter key [String] the header key.

Add the specified header key value pair.
def add(key, value)
	self[key] = value
end