zephyr/subsys/net/lib/dns
Flavio Santes 362a12200a net/dns: Fix inline documentation
Fix inline documentation for the dns client API.

Jira: ZEP-1669

Change-Id: I9e6ae4e1301f1e4a125b75add1a8bc7331a818b0
Signed-off-by: Flavio Santes <flavio.santes@intel.com>
2017-02-07 22:33:47 +00:00
..
dns_client.c license: Replace Apache boilerplate with SPDX tag 2017-01-19 03:50:58 +00:00
dns_pack.c license: Replace Apache boilerplate with SPDX tag 2017-01-19 03:50:58 +00:00
dns_pack.h net/dns: Fix inline documentation 2017-02-07 22:33:47 +00:00
Kconfig license: Replace Apache boilerplate with SPDX tag 2017-01-19 03:50:58 +00:00
Makefile
README

DNS Client API for Zephyr
=========================


Known limitations:

- Synchronous queries
- Only IPv4 and IPv6 records can be handled
- Minimal protocol validation. If you do not trust your DNS server,
  it is time to change it :)


Usage:

Before calling the resolver, it must be initialized via the 'dns_init'
routine.

See samples/net/dns_client/src/main.c.