Boost C++ Libraries Home Libraries People FAQ More

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