class Protocol::HTTP::Cookie

def initialize(name, value, directives)

@parameter directives [Hash] The directives of the cookie, e.g. `{"path" => "/"}`.
@parameter value [String] The value of the cookie, e.g. "1234".
@parameter name [String] The name of the cookiel, e.g. "session_id".

Initialize the cookie with the given name, value, and directives.
def initialize(name, value, directives)
	@name = name
	@value = value
	@directives = directives
end