File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
boost/network/uri/http/detail Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -88,11 +88,9 @@ namespace boost { namespace network { namespace uri {
88
88
89
89
qi::rule<iterator, string_type::value_type ()> gen_delims = qi::char_ (" :/?#[]@" );
90
90
qi::rule<iterator, string_type::value_type ()> sub_delims = qi::char_ (" !$&'()*+,;=" );
91
-
92
91
qi::rule<iterator, string_type::value_type ()> reserved = gen_delims | sub_delims;
93
92
qi::rule<iterator, string_type::value_type ()> unreserved = qi::alnum | qi::char_ (" -._~" );
94
- qi::rule<iterator, string_type ()> pct_encoded = qi::char_ (" %" ) > qi::repeat (2 )[qi::xdigit];
95
-
93
+ qi::rule<iterator, string_type ()> pct_encoded = qi::raw[qi::char_ (" %" ) > qi::repeat (2 )[qi::xdigit]];
96
94
qi::rule<iterator, string_type ()> pchar = qi::raw[unreserved | pct_encoded | sub_delims | qi::char_ (" :@" )];
97
95
98
96
hostname<tags::http_default_8bit_tcp_resolve>::parser<iterator> hostname;
You can’t perform that action at this time.
0 commit comments