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 the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

ip::basic_resolver::resolve

(Deprecated: Use overload with separate host and service parameters.) Perform forward resolution of a query to a list of entries.

results_type resolve(
    const query & q);
  » more...

results_type resolve(
    const query & q,
    boost::system::error_code & ec);
  » more...

Perform forward resolution of a query to a list of entries.

results_type resolve(
    string_view host,
    string_view service);
  » more...

results_type resolve(
    string_view host,
    string_view service,
    boost::system::error_code & ec);
  » more...

results_type resolve(
    string_view host,
    string_view service,
    resolver_base::flags resolve_flags);
  » more...

results_type resolve(
    string_view host,
    string_view service,
    resolver_base::flags resolve_flags,
    boost::system::error_code & ec);
  » more...

results_type resolve(
    const protocol_type & protocol,
    string_view host,
    string_view service);
  » more...

results_type resolve(
    const protocol_type & protocol,
    string_view host,
    string_view service,
    boost::system::error_code & ec);
  » more...

results_type resolve(
    const protocol_type & protocol,
    string_view host,
    string_view service,
    resolver_base::flags resolve_flags);
  » more...

results_type resolve(
    const protocol_type & protocol,
    string_view host,
    string_view service,
    resolver_base::flags resolve_flags,
    boost::system::error_code & ec);
  » more...

Perform reverse resolution of an endpoint to a list of entries.

results_type resolve(
    const endpoint_type & e);
  » more...

results_type resolve(
    const endpoint_type & e,
    boost::system::error_code & ec);
  » more...

PrevUpHomeNext