It's not a question about sense but about specification.
A HTTP cookie must be set like
Set-Cookie: <cookieValue>[; <attribute>][; <attribute>]
cookieValue
is recommended to be set as
<key>=<value>
but can be a single value without an equal sign, because the equal sign is not recommended by specification but by common usage. So if I set a cookie like
Set-Cookie: foobar
Does foobar
will be set as the cookie key or the cookie value?
I'm developing a CURL wrapper and I'm on the cookie implementation right now. But the handling of a equal-sign-less cookie value isn't quite obvious to do it right.
If I missed some specification answering my question I'd be happy to get links into that specification.