[/ / Copyright (c) 2003-2025 Christopher M. Kohlhoff (chris at kohlhoff dot com) / / Distributed under the Boost Software License, Version 1.0. (See accompanying / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) /] [section:RangeConnectToken Range connect token requirements] A range connect token is a [link asio.overview.model.completion_tokens completion token] for completion signature `void(error_code, typename Protocol::endpoint)`, where the type `Protocol` is used in the corresponding `async_connect()` function. [heading Examples] A free function as a range connect token: void connect_handler( const asio::error_code& ec, const asio::ip::tcp::endpoint& endpoint) { ... } A range connect token function object: struct connect_handler { ... template void operator()( const asio::error_code& ec, const asio::ip::tcp::endpoint& endpoint) { ... } ... }; A lambda as a range connect token: asio::async_connect(..., [](const asio::error_code& ec, const asio::ip::tcp::endpoint& endpoint) { ... }); A non-static class member function adapted to a range connect token using `std::bind()`: void my_class::connect_handler( const asio::error_code& ec, const asio::ip::tcp::endpoint& endpoint) { ... } ... asio::async_connect(..., std::bind(&my_class::connect_handler, this, std::placeholders::_1, std::placeholders::_2)); A non-static class member function adapted to a range connect token using `boost::bind()`: void my_class::connect_handler( const asio::error_code& ec, const asio::ip::tcp::endpoint& endpoint) { ... } ... asio::async_connect(..., boost::bind(&my_class::connect_handler, this, asio::placeholders::error, asio::placeholders::endpoint)); Using [link asio.reference.use_future use_future] as a range connect token: std::future f = asio::async_connect(..., asio::use_future); ... try { asio::ip::tcp::endpoint e = f.get(); ... } catch (const system_error& e) { ... } Using [link asio.reference.use_awaitable use_awaitable] as a range connect token: asio::awaitable my_coroutine() { try { ... asio::ip::tcp::endpoint e = co_await asio::async_connect( ..., asio::use_awaitable); ... } catch (const system_error& e) { ... } } [endsect]