This commit is contained in:
JoelKatz
2012-05-08 14:32:51 -07:00
parent ccc07e1765
commit 0968e0229b
3 changed files with 3 additions and 3 deletions

View File

@@ -102,7 +102,7 @@ void Application::run()
}
//
// Begin connectting to network.
// Begin connecting to network.
//
mConnectionPool.start();

View File

@@ -177,7 +177,7 @@ bool ConnectionPool::connectTo(const std::string& strIp, int iPort)
if (it == mIpMap.end())
{
// Did not find it. Not already connecting or connected.
std::cerr << "ConnectionPool::connectTo: Connectting: "
std::cerr << "ConnectionPool::connectTo: Connecting: "
<< strIp << " " << iPort << std::endl;
Peer::pointer peer(Peer::create(theApp->getIOService(), mCtx));

View File

@@ -167,7 +167,7 @@ void HttpsClient::handleConnect(const boost::system::error_code& ecResult)
if (!mShutdown)
{
// std::cerr << "Connectted." << std::endl;
// std::cerr << "Connected." << std::endl;
mSocketSsl.lowest_layer().set_option(boost::asio::ip::tcp::no_delay(true));
mSocketSsl.set_verify_mode(boost::asio::ssl::verify_peer);