Commit 2a4f347d authored by Kazuho Oku's avatar Kazuho Oku

do not send pseudo-headers when in HTTP/1

parent bff5a28d
......@@ -807,7 +807,9 @@ int HttpClient::on_upgrade_connect() {
if (i < initial_headerslen) {
continue;
}
headers.emplace_back(kv.name, kv.value, kv.no_index);
if (kv.name.size() != 0 && kv.name[0] != ':') {
headers.emplace_back(kv.name, kv.value, kv.no_index);
}
}
req += " HTTP/1.1\r\n";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment