]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Update the dns_dispatch_add() function's documentation
authorAram Sargsyan <aram@isc.org>
Fri, 25 Oct 2024 13:35:03 +0000 (13:35 +0000)
committerAram Sargsyan <aram@isc.org>
Wed, 22 Jan 2025 11:52:24 +0000 (11:52 +0000)
The 'timedout' callback no longer exists. Remove the mentioning of
the 'timedout' callback.

lib/dns/include/dns/dispatch.h

index 45fc4946d2b0a73add96cd3b3c7295b32ad05241..eced64f0af981ac282762e77f44de456bc798f0b 100644 (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.
  *