|
|
|
@ -873,6 +873,13 @@ void udp_socket::on_connect(int ticket)
@@ -873,6 +873,13 @@ void udp_socket::on_connect(int ticket)
|
|
|
|
|
if (m_abort) return; |
|
|
|
|
if (is_closed()) return; |
|
|
|
|
|
|
|
|
|
if (m_connection_ticket != -1) |
|
|
|
|
{ |
|
|
|
|
// there's already an outstanding connect. Cancel it.
|
|
|
|
|
m_socks5_sock.close(); |
|
|
|
|
m_connection_ticket = -1; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#if defined TORRENT_ASIO_DEBUGGING |
|
|
|
|
add_outstanding_async("udp_socket::on_connected"); |
|
|
|
|
#endif |
|
|
|
@ -885,10 +892,10 @@ void udp_socket::on_connect(int ticket)
@@ -885,10 +892,10 @@ void udp_socket::on_connect(int ticket)
|
|
|
|
|
++m_outstanding_connect; |
|
|
|
|
#endif |
|
|
|
|
m_socks5_sock.async_connect(tcp::endpoint(m_proxy_addr.address(), m_proxy_addr.port()) |
|
|
|
|
, boost::bind(&udp_socket::on_connected, this, _1)); |
|
|
|
|
, boost::bind(&udp_socket::on_connected, this, _1, ticket)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void udp_socket::on_connected(error_code const& e) |
|
|
|
|
void udp_socket::on_connected(error_code const& e, int ticket) |
|
|
|
|
{ |
|
|
|
|
#if defined TORRENT_ASIO_DEBUGGING |
|
|
|
|
complete_async("udp_socket::on_connected"); |
|
|
|
@ -904,13 +911,14 @@ void udp_socket::on_connected(error_code const& e)
@@ -904,13 +911,14 @@ void udp_socket::on_connected(error_code const& e)
|
|
|
|
|
+ m_outstanding_resolve |
|
|
|
|
+ m_outstanding_connect_queue |
|
|
|
|
+ m_outstanding_socks); |
|
|
|
|
if (m_abort) return; |
|
|
|
|
CHECK_MAGIC; |
|
|
|
|
|
|
|
|
|
if (e == asio::error::operation_aborted) return; |
|
|
|
|
CHECK_MAGIC; |
|
|
|
|
|
|
|
|
|
TORRENT_ASSERT(is_single_thread()); |
|
|
|
|
m_cc.done(m_connection_ticket); |
|
|
|
|
m_cc.done(ticket); |
|
|
|
|
// if the tickets mismatch, another connection attempt
|
|
|
|
|
// was initiated while waiting for this one to complete.
|
|
|
|
|
if (ticket == m_connection_ticket) |
|
|
|
|
m_connection_ticket = -1; |
|
|
|
|
|
|
|
|
|
// we just called done, which means on_timeout
|
|
|
|
@ -927,6 +935,14 @@ void udp_socket::on_connected(error_code const& e)
@@ -927,6 +935,14 @@ void udp_socket::on_connected(error_code const& e)
|
|
|
|
|
+ m_outstanding_resolve |
|
|
|
|
+ m_outstanding_connect_queue |
|
|
|
|
+ m_outstanding_socks); |
|
|
|
|
|
|
|
|
|
if (e == asio::error::operation_aborted) return; |
|
|
|
|
|
|
|
|
|
// if ticket != m_connection_ticket, it means m_connection_ticket
|
|
|
|
|
// will not have been reset, and it means we are still waiting
|
|
|
|
|
// for a connection attempt.
|
|
|
|
|
if (m_connection_ticket != -1) return; |
|
|
|
|
|
|
|
|
|
if (m_abort) return; |
|
|
|
|
|
|
|
|
|
if (e) |
|
|
|
|