Lines Matching full:callback
91 * void callback(int result, char type, int count, int ttl,
94 * evdns_resolve("www.hostname.com", 0, callback, NULL);
96 * When the lookup is complete the callback function is called. The
205 * The callback that contains the results from a lookup.
316 @param callback a callback function to invoke when the request is completed
317 @param ptr an argument to pass to the callback function
321 int evdns_resolve_ipv4(const char *name, int flags, evdns_callback_type callback, void *ptr);
329 @param callback a callback function to invoke when the request is completed
330 @param ptr an argument to pass to the callback function
334 int evdns_resolve_ipv6(const char *name, int flags, evdns_callback_type callback, void *ptr);
344 @param callback a callback function to invoke when the request is completed
345 @param ptr an argument to pass to the callback function
349 int evdns_resolve_reverse(const struct in_addr *in, int flags, evdns_callback_type callback, void *ptr);
357 @param callback a callback function to invoke when the request is completed
358 @param ptr an argument to pass to the callback function
362 int evdns_resolve_reverse_ipv6(const struct in6_addr *in, int flags, evdns_callback_type callback, void *ptr);
444 A callback that is invoked when a log message is generated
453 Set the callback function to handle log messages.
455 @param fn the callback to be invoked when a log message is generated
460 callback that will be invoked to generate transaction IDs. By
463 @param fn the new callback, or NULL to use the default.
510 struct evdns_server_port *evdns_add_server_port(int socket, int is_tcp, evdns_request_callback_fn_type callback, void *user_data);