What exactly is the linear whitespace? (LWS/LWSP)
I saw mention of the term, along with CRLF, CR, LF, CTL (control characters) and SP (space). If it's not the regular inline whitespace ( ), so what character(s) is it? From STD68 Augmented BNF for Syntax Specifications: ABNF LWSP = *(WSP / CRLF WSP) ; Use of this linear-white-space rule permits ; lines containing only white space* WSP = SP / HTAB ; white space CRLF = CR LF ; Internet standard newline SP = %x20 ; space HTAB = %x09 ; horizontal tab CR = %x0D ; carriage return LF = %x0A ; linefeed The comment on LWSP has changed in STD68 (aka RFC5234) from RFC2234 and RFC4234 and now gives advice