zephyr/subsys/net/lib/dns
Jukka Rissanen 4bcdf049bb net: dns: Add more debugging about configured servers
Print information about configured DNS servers when starting
in order to ease the debugging.

Change-Id: I3ba71e514e463db790b82913e4c66a67160366dc
Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
2017-04-13 15:21:43 +03:00
..
dns_client.c net/dns: Fix style issues in the DNS high-level API 2017-03-09 20:33:49 +02:00
dns_pack.c net/dns: Fix DNS answer RR computation 2017-03-17 10:34:41 +02:00
dns_pack.h net/dns: Fix DNS answer RR computation 2017-03-17 10:34:41 +02:00
Kconfig net: dns: Initialize DNS resolver if DNS servers are set 2017-03-24 17:31:42 +02:00
Makefile net: dns: Add resolve API 2017-03-24 17:31:42 +02:00
README net: Restructure network protocols 2017-01-02 10:03:19 +01:00
resolve.c net: dns: Add more debugging about configured servers 2017-04-13 15:21:43 +03:00

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.