In HTTP headers can be multi-line.
For example:
Word-Of-The-Day: The Fox Jumps Over
the brown dog.
However, when reading the standard, I came to the conclusion that leading and trailing whitespace MAY be removed, so we get "The Fox Jumps Overthe brown dog." Overthe becomes one word when really it should've been "Over the" (two words, seperated by whitespace).
How do I handle parsing of HTTP values in situations like this, i.e. how do I concatenate HTTP-multiline headers to mean the same thing as single line headers?