Merge branch 'kazuho-kazuho/issues/177'

This commit is contained in:
Tatsuhiro Tsujikawa 2015-03-09 21:11:10 +09:00
commit 6b7e6166f9
1 changed files with 3 additions and 1 deletions

View File

@ -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";