@@ -130,12 +130,15 @@ * @brief Asynchronously resolves the specified host. * * @param host The host to resolve * @param target The target to call with the result once resolving is done * @param selector The selector to call on the target. The signature must be - * `void (OFArray *response, id context, - * id exception)`. + * `void (OFDNSResolver *resolver, + * nullable OFArray *answerRecords, + * nullable OFArray *authorityRecords, + * nullable OFArray *additionalRecords, + * nullable id context, nullable id exception)`. * @param context A context object to pass along to the target */ - (void)asyncResolveHost: (OFString *)host target: (id)target selector: (SEL)selector