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::udp::resolver

The UDP resolver type.

typedef basic_resolver< udp > resolver;
Types

Name

Description

endpoint_type

The endpoint type.

implementation_type

The underlying implementation type of I/O object.

iterator

The iterator type.

protocol_type

The protocol type.

query

The query type.

service_type

The type of the service that will be used to provide I/O operations.

Member Functions

Name

Description

async_resolve

Asynchronously resolve a query to a list of entries.

basic_resolver

Constructor.

cancel

Cancel any asynchronous operations that are waiting on the resolver.

get_io_service

Get the io_service associated with the object.

io_service

(Deprecated: use get_io_service().) Get the io_service associated with the object.

resolve

Resolve a query to a list of entries.

The basic_resolver class template provides the ability to resolve a query to a list of endpoints.

Thread Safety

Distinct objects: Safe.

Shared objects: Unsafe.


PrevUpHomeNext