mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Typo.
This commit is contained in:
@@ -102,7 +102,7 @@ void Application::run()
|
|||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Begin connectting to network.
|
// Begin connecting to network.
|
||||||
//
|
//
|
||||||
mConnectionPool.start();
|
mConnectionPool.start();
|
||||||
|
|
||||||
|
|||||||
@@ -177,7 +177,7 @@ bool ConnectionPool::connectTo(const std::string& strIp, int iPort)
|
|||||||
if (it == mIpMap.end())
|
if (it == mIpMap.end())
|
||||||
{
|
{
|
||||||
// Did not find it. Not already connecting or connected.
|
// Did not find it. Not already connecting or connected.
|
||||||
std::cerr << "ConnectionPool::connectTo: Connectting: "
|
std::cerr << "ConnectionPool::connectTo: Connecting: "
|
||||||
<< strIp << " " << iPort << std::endl;
|
<< strIp << " " << iPort << std::endl;
|
||||||
|
|
||||||
Peer::pointer peer(Peer::create(theApp->getIOService(), mCtx));
|
Peer::pointer peer(Peer::create(theApp->getIOService(), mCtx));
|
||||||
|
|||||||
@@ -167,7 +167,7 @@ void HttpsClient::handleConnect(const boost::system::error_code& ecResult)
|
|||||||
|
|
||||||
if (!mShutdown)
|
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.lowest_layer().set_option(boost::asio::ip::tcp::no_delay(true));
|
||||||
mSocketSsl.set_verify_mode(boost::asio::ssl::verify_peer);
|
mSocketSsl.set_verify_mode(boost::asio::ssl::verify_peer);
|
||||||
|
|||||||
Reference in New Issue
Block a user