2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 05:28:00 +00:00

Update the dns_dispatch_add() function's documentation

The 'timedout' callback no longer exists. Remove the mentioning of
the 'timedout' callback.
This commit is contained in:
Aram Sargsyan 2024-10-25 13:35:03 +00:00
parent 65c557c536
commit 9ccd1be482

View File

@ -308,10 +308,8 @@ dns_dispatch_add(dns_dispatch_t *disp, isc_loop_t *loop,
* with the dispatch entry object.
*
* The 'connected' and 'sent' callbacks are run to inform the caller when
* the connect and send functions are complete. The 'timedout' callback
* is run to inform the caller that a read has timed out; it may optionally
* reset the read timer. The 'response' callback is run for recv results
* (response packets, timeouts, or cancellations).
* the connect and send functions are complete. The 'response' callback is run
* for recv results (response packets, timeouts, or cancellations).
*
* All the callback functions are sent 'arg' as a parameter.
*