0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-11 14:38:57 +02:00

ircd::http: Adjust grammar for cloudflare.

This commit is contained in:
Jason Volk 2022-06-17 14:04:39 -07:00
parent 0c281f10d0
commit 85aa4bd8c6

View file

@ -198,7 +198,7 @@ namespace ircd::http::parser
const rule<line::response> response_line
{
version >> +SP >> status >> -(+SP >> reason)
version >> +SP >> status >> -(+SP >> -reason)
,"response line"
};