mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-12 07:29:04 +08:00
12437fd7fe
PUBLISHED_FROM=e9a4e5c7b4a1d03b93a2a79e29de19e60e919929
850 B
850 B
title | decl_name | symbol_kind | signature |
---|---|---|---|
mg_resolve_async_opt() | mg_resolve_async_opt | func | int mg_resolve_async_opt(struct mg_mgr *mgr, const char *name, int query, mg_resolve_callback_t cb, void *data, struct mg_resolve_async_opts opts); |
Resolved a DNS name asynchronously.
Upon successful resolution, the user callback will be invoked
with the full DNS response message and a pointer to the user's
context data
.
In case of timeout while performing the resolution the callback
will receive a NULL msg
.
The DNS answers can be extracted with mg_next_record
and
mg_dns_parse_record_data
: