1
2getdns_cancel_callback(3)           getdns           getdns_cancel_callback(3)
3
4
5

NAME

7       getdns_cancel_callback -- cancel an outstanding asyn getdns request
8
9

LIBRARY

11       DNS Resolver library (libgetdns, -lgetdns)
12
13

SYNOPSIS

15       #include <getdns.h>
16
17       getdns_return_t
18       getdns_cancel_callback (getdns_context_t context,
19          getdns_transaction_t *transaction_id)
20
21

DESCRIPTION

23       To  cancel  an  outstanding  callback, use getdns_cancel_callback. This
24       causes  the  API  to  call  the  callback  with  a   callback_type   of
25       GETDNS_CALLBACK_CANCEL  if the callback for this transaction_id has not
26       already been called. The callback code for cancellation should clean up
27       any  memory  related  to the identified call, such as to deallocate the
28       memory for the userarg.  getdns_cancel_callback()  may  return  immedi‐
29       ately, even before the callback finishes its work and returns.
30
31
32       context see getdns_context (3)
33
34
35       transaction_id  populated  by the API and used to identify the callback
36          (for example to getdns_cancel_callback), can be NULL, set  to  0  if
37          the function fails
38
39
40
41

RETURN VALUES

43       Upon  successful  completion  the functions return GETDNS_RETURN_GOOD ,
44       otherwise the following error values are returned:
45
46
47       GETDNS_RETURN_INVALID_PARAMETER if context == NULL
48
49       GETDNS_RETURN_UNKNOWN_TRANSACTION if the transaction_id that is unknown
50       or belongs to a callback that has already been called
51
52

EXAMPLES

54       TBD
55
56

FILES

58       /etc/hosts
59       /etc/resolv.conf
60
61

SEE ALSO

63       libgetdns(3), getdns_context(3), getdns_general(3), getdns_hostname(3),
64       getdns_service(3),
65
66
67
68
69getdns 1.6.0                     December 2015       getdns_cancel_callback(3)
Impressum