Fix Crawl handshake header parsing in Overlay

This commit is contained in:
Vinnie Falco
2015-04-16 18:20:54 -07:00
parent a7198298e7
commit 3b20dc2994
2 changed files with 11 additions and 8 deletions

View File

@@ -423,8 +423,8 @@ ConnectAttempt::processResponse (beast::http::message const& m,
auto const peer = std::make_shared<PeerImp>(
std::move(ssl_bundle_), read_buf_.data(),
std::move(slot_), usage_, std::move(hello),
publicKey, id_, overlay_);
std::move(slot_), std::move(response_),
usage_, std::move(hello), publicKey, id_, overlay_);
overlay_.add_active (peer);
}