@@ -18,11 +18,11 @@ #import "OFException.h" #import "OFDNSResolver.h" OF_ASSUME_NONNULL_BEGIN -/*! +/** * @class OFResolveHostFailedException \ * OFResolveHostFailedException.h ObjFW/OFResolveHostFailedException.h * * @brief An exception indicating that resolving a host failed. */ @@ -31,26 +31,26 @@ OFString *_host; of_socket_address_family_t _addressFamily; of_dns_resolver_error_t _error; } -/*! +/** * @brief The host which could not be resolved. */ @property (readonly, nonatomic) OFString *host; -/*! +/** * @brief The address family for which the host could not be resolved. */ @property (readonly, nonatomic) of_socket_address_family_t addressFamily; -/*! +/** * @brief The error from the resolver. */ @property (readonly, nonatomic) of_dns_resolver_error_t error; -/*! +/** * @brief Creates a new, autoreleased resolve host failed exception. * * @param host The host which could not be resolved * @param addressFamily The address family for which the host could not be * resolved @@ -59,11 +59,11 @@ */ + (instancetype)exceptionWithHost: (OFString *)host addressFamily: (of_socket_address_family_t)addressFamily error: (of_dns_resolver_error_t)error; -/*! +/** * @brief Initializes an already allocated resolve host failed exception. * * @param host The host which could not be resolved * @param addressFamily The address family for which the host could not be * resolved