mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #5917
7d81850
epee: fix network timeouts in blocked_mode_client (xiphon)
This commit is contained in:
commit
ca975bcb79
1 changed files with 2 additions and 1 deletions
|
@ -108,11 +108,12 @@ namespace net_utils
|
|||
m_ssl_options(epee::net_utils::ssl_support_t::e_ssl_support_autodetect),
|
||||
m_initialized(true),
|
||||
m_connected(false),
|
||||
m_deadline(m_io_service),
|
||||
m_deadline(m_io_service, std::chrono::steady_clock::time_point::max()),
|
||||
m_shutdowned(0),
|
||||
m_bytes_sent(0),
|
||||
m_bytes_received(0)
|
||||
{
|
||||
check_deadline();
|
||||
}
|
||||
|
||||
/*! The first/second parameters are host/port respectively. The third
|
||||
|
|
Loading…
Reference in a new issue