Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This is an older version of Boost and was released in 2017. The current version is 1.90.0.
(Deprecated.) Asynchronously perform forward resolution of a query to a list of entries.
template<
typename ResolveHandler>
DEDUCED async_resolve(
const query & q,
ResolveHandler && handler);
» more...
Asynchronously perform forward resolution of a query to a list of entries.
template<
typename ResolveHandler>
DEDUCED async_resolve(
string_view host,
string_view service,
ResolveHandler && handler);
» more...
template<
typename ResolveHandler>
DEDUCED async_resolve(
string_view host,
string_view service,
resolver_base::flags resolve_flags,
ResolveHandler && handler);
» more...
template<
typename ResolveHandler>
DEDUCED async_resolve(
const protocol_type & protocol,
string_view host,
string_view service,
ResolveHandler && handler);
» more...
template<
typename ResolveHandler>
DEDUCED async_resolve(
const protocol_type & protocol,
string_view host,
string_view service,
resolver_base::flags resolve_flags,
ResolveHandler && handler);
» more...
Asynchronously perform reverse resolution of an endpoint to a list of entries.
template<
typename ResolveHandler>
DEDUCED async_resolve(
const endpoint_type & e,
ResolveHandler && handler);
» more...