Asynchronously establishes a socket connection by trying each endpoint in a sequence.
template< typename Protocol, typename EndpointSequence, typename RangeConnectHandler> DEDUCED async_connect( basic_socket< Protocol > & s, const EndpointSequence & endpoints, RangeConnectHandler && handler, typename enable_if< is_endpoint_sequence< EndpointSequence >::value >::type * = 0); » more... template< typename Protocol, typename Iterator, typename IteratorConnectHandler> DEDUCED async_connect( basic_socket< Protocol > & s, Iterator begin, Iterator end, IteratorConnectHandler && handler); » more... template< typename Protocol, typename EndpointSequence, typename ConnectCondition, typename RangeConnectHandler> DEDUCED async_connect( basic_socket< Protocol > & s, const EndpointSequence & endpoints, ConnectCondition connect_condition, RangeConnectHandler && handler, typename enable_if< is_endpoint_sequence< EndpointSequence >::value >::type * = 0); » more... template< typename Protocol, typename Iterator, typename ConnectCondition, typename IteratorConnectHandler> DEDUCED async_connect( basic_socket< Protocol > & s, Iterator begin, Iterator end, ConnectCondition connect_condition, IteratorConnectHandler && handler); » more...