Updating http parser to accept a + in the schema

This commit is contained in:
Chris Bargren 2015-12-22 10:38:16 -07:00
parent e9c0d7962b
commit d900cec96c

View File

@ -451,7 +451,7 @@ parse_url_char(enum state s, const char ch)
break;
case s_req_schema:
if (IS_ALPHA(ch)) {
if (IS_ALPHA(ch) || ch == '+') {
return s;
}