Closed kenballus closed 1 year ago
From the RFC:
field-line = field-name ":" OWS field-value OWS OWS = *( SP / HTAB )
field-line = field-name ":" OWS field-value OWS
OWS = *( SP / HTAB )
The following HTTP request is incorrectly rejected by Daedalus, because of the space after the v:
v
GET / HTTP/1.1\r\nH: v \r\n\r\n
The DDL spec should be updated to allow whitespace on the right side of a header value.
From the RFC:
The following HTTP request is incorrectly rejected by Daedalus, because of the space after the
v
:The DDL spec should be updated to allow whitespace on the right side of a header value.