Library: DNSSD
Package: Core
Header: Poco/DNSSD/Error.h
Error stores information about an error that occured during browsing or service registration.
Member Functions: code, message, networkInterface
Error();
Creates an uninitialized ServiceError.
Error(
Poco::Int32 networkInterface,
Poco::Int32 code,
const std::string & message
);
Creates the ServiceError using the given information.
~Error();
Destroys the ServiceError.
Poco::Int32 code() const;
Returns the implementation-specific error code.
const std::string & message() const;
Returns the human-readable error message.
Poco::Int32 networkInterface() const;
Returns the network interface on which the error occurred.