zephyr/subsys/net/lib/dns
Flavio Santes 86e6a5d00a net/dns: Fix wrong name in DNS answer type routine
Use dns_answer_type instead of dns_response_type to reflect that
the routine refers to the DNS answer RR.

Change-Id: I6d01add4a1b090b83a0708326a52b7bb945c8d23
Signed-off-by: Flavio Santes <flavio.santes@intel.com>
2017-03-17 10:34:41 +02:00
..
dns_client.c
dns_pack.c net/dns: Fix wrong name in DNS answer type routine 2017-03-17 10:34:41 +02:00
dns_pack.h net/dns: Fix wrong name in DNS answer type routine 2017-03-17 10:34:41 +02:00
Kconfig
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.