We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vcl::http::HTTP assumes headers are valid utf8 and joyfully unwraps conversions, we should make sure this never blows up
vcl::http::HTTP
The text was updated successfully, but these errors were encountered:
are there any examples of the incorrect values?
Sorry, something went wrong.
https://datatracker.ietf.org/doc/html/rfc7230#section-3.2 https://datatracker.ietf.org/doc/html/rfc7230#appendix-B https://datatracker.ietf.org/doc/html/rfc5234#appendix-B.1
TL;DR:
DIGIT = %x30-39 ; 0-9 ALPHA = %x41-5A / %x61-7A ; A-Z / a-z tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" / "+" / "-" / "." / "^" / "_" / "`" / "|" / "~" / DIGIT / ALPHA token = 1*tchar
to answer your question, ^ is bad
^
No branches or pull requests
vcl::http::HTTP
assumes headers are valid utf8 and joyfully unwraps conversions, we should make sure this never blows upThe text was updated successfully, but these errors were encountered: