diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-11-25 19:13:05 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-11-25 19:27:54 +0000 |
commit | e896cca86e20ed49abcb4d9cd4a966fd66f28fba (patch) | |
tree | 097104c33958a8174ecc0f095f650754257780fa /contrib/epee/include/net | |
parent | Merge pull request #6097 (diff) | |
download | monero-e896cca86e20ed49abcb4d9cd4a966fd66f28fba.tar.xz |
epee: reorder a couple init list fields to match declaration
This is a bug waiting to happen
Diffstat (limited to 'contrib/epee/include/net')
-rw-r--r-- | contrib/epee/include/net/net_helper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/epee/include/net/net_helper.h b/contrib/epee/include/net/net_helper.h index 81545e502..9446e3588 100644 --- a/contrib/epee/include/net/net_helper.h +++ b/contrib/epee/include/net/net_helper.h @@ -103,8 +103,8 @@ namespace net_utils blocked_mode_client() : m_io_service(), m_ctx(boost::asio::ssl::context::tlsv12), - m_connector(direct_connect{}), m_ssl_socket(new boost::asio::ssl::stream<boost::asio::ip::tcp::socket>(m_io_service, m_ctx)), + m_connector(direct_connect{}), m_ssl_options(epee::net_utils::ssl_support_t::e_ssl_support_autodetect), m_initialized(true), m_connected(false), |