Poco::Net

class DNS

Library: Net
Package: NetCore
Header: Poco/Net/DNS.h

Description

This class provides an interface to the domain name service.

An internal DNS cache is used to speed up name lookups.

Member Summary

Member Functions: error, flushCache, hostByAddress, hostByName, lastError, resolve, resolveOne, thisHost

Member Functions

flushCache static

static void flushCache();

Flushes the internal DNS cache.

hostByAddress static

static const HostEntry & hostByAddress(
    const IPAddress & address
);

Returns a HostEntry object containing the DNS information for the host with the given IP address.

Throws a HostNotFoundException if a host with the given name cannot be found.

Throws a DNSException in case of a general DNS error.

Throws an IOException in case of any other error.

hostByName static

static const HostEntry & hostByName(
    const std::string & hostname
);

Returns a HostEntry object containing the DNS information for the host with the given name.

Throws a HostNotFoundException if a host with the given name cannot be found.

Throws a NoAddressFoundException if no address can be found for the hostname.

Throws a DNSException in case of a general DNS error.

Throws an IOException in case of any other error.

resolve static

static const HostEntry & resolve(
    const std::string & address
);

Returns a HostEntry object containing the DNS information for the host with the given IP address or host name.

Throws a HostNotFoundException if a host with the given name cannot be found.

Throws a NoAddressFoundException if no address can be found for the hostname.

Throws a DNSException in case of a general DNS error.

Throws an IOException in case of any other error.

resolveOne static

static IPAddress resolveOne(
    const std::string & address
);

Convenience method that calls resolve(address) and returns the first address from the HostInfo.

thisHost static

static const HostEntry & thisHost();

Returns a HostEntry object containing the DNS information for this host.

Throws a HostNotFoundException if DNS information for this host cannot be found.

Throws a NoAddressFoundException if no address can be found for this host.

Throws a DNSException in case of a general DNS error.

Throws an IOException in case of any other error.

error protected static

static void error(
    int code,
    const std::string & arg
);

Throws an exception according to the error code.

lastError protected static

static int lastError();

Returns the code of the last error.