mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-07 07:44:13 +00:00
Merge pull request #25 from orignal/master
don't send session request twice
This commit is contained in:
commit
57dd362be4
16
SSU.cpp
16
SSU.cpp
@ -492,15 +492,17 @@ namespace ssu
|
||||
|
||||
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->expires_from_now (boost::posix_time::seconds(SSU_CONNECT_TIMEOUT));
|
||||
m_ConnectTimer->async_wait (boost::bind (&SSUSession::HandleConnectTimer,
|
||||
this, boost::asio::placeholders::error));
|
||||
}
|
||||
SendSessionRequest ();
|
||||
m_ConnectTimer->expires_from_now (boost::posix_time::seconds(SSU_CONNECT_TIMEOUT));
|
||||
m_ConnectTimer->async_wait (boost::bind (&SSUSession::HandleConnectTimer,
|
||||
this, boost::asio::placeholders::error));
|
||||
}
|
||||
SendSessionRequest ();
|
||||
}
|
||||
}
|
||||
|
||||
void SSUSession::HandleConnectTimer (const boost::system::error_code& ecode)
|
||||
|
Loading…
x
Reference in New Issue
Block a user