mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-13 04:46:38 +01:00
Merge pull request #25 from orignal/master
don't send session request twice
This commit is contained in:
commit
57dd362be4
1 changed files with 9 additions and 7 deletions
16
SSU.cpp
16
SSU.cpp
|
@ -492,15 +492,17 @@ namespace ssu
|
||||||
|
|
||||||
void SSUSession::Connect ()
|
void SSUSession::Connect ()
|
||||||
{
|
{
|
||||||
if (m_Server)
|
if (m_State == eSessionStateUnknown)
|
||||||
{
|
{
|
||||||
if (!m_ConnectTimer)
|
if (m_Server)
|
||||||
|
{
|
||||||
m_ConnectTimer = new boost::asio::deadline_timer (m_Server->GetService ());
|
m_ConnectTimer = new boost::asio::deadline_timer (m_Server->GetService ());
|
||||||
m_ConnectTimer->expires_from_now (boost::posix_time::seconds(SSU_CONNECT_TIMEOUT));
|
m_ConnectTimer->expires_from_now (boost::posix_time::seconds(SSU_CONNECT_TIMEOUT));
|
||||||
m_ConnectTimer->async_wait (boost::bind (&SSUSession::HandleConnectTimer,
|
m_ConnectTimer->async_wait (boost::bind (&SSUSession::HandleConnectTimer,
|
||||||
this, boost::asio::placeholders::error));
|
this, boost::asio::placeholders::error));
|
||||||
}
|
}
|
||||||
SendSessionRequest ();
|
SendSessionRequest ();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void SSUSession::HandleConnectTimer (const boost::system::error_code& ecode)
|
void SSUSession::HandleConnectTimer (const boost::system::error_code& ecode)
|
||||||
|
|
Loading…
Add table
Reference in a new issue