zephyr/subsys/net/lib/dns
Flavio Santes 6383705e53 net/dns: Improve unaligned memory access
Improve unaligned memory access in some inline routines.

Change-Id: I8065b4ac399a5f9f03997b43d8f8f8d320778ec3
Signed-off-by: Flavio Santes <flavio.santes@intel.com>
2017-02-27 08:34:06 +00:00
..
Kconfig license: Replace Apache boilerplate with SPDX tag 2017-01-19 03:50:58 +00:00
Makefile
README
dns_client.c net: nbuf: Add timeout to net_buf getters 2017-02-08 10:12:35 +02:00
dns_pack.c license: Replace Apache boilerplate with SPDX tag 2017-01-19 03:50:58 +00:00
dns_pack.h net/dns: Improve unaligned memory access 2017-02-27 08:34:06 +00:00

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.