add basic dns record parsing functions
authorRich Felker <dalias@aerifal.cx>
Wed, 17 Dec 2014 19:40:35 +0000 (14:40 -0500)
committerRich Felker <dalias@aerifal.cx>
Wed, 17 Dec 2014 19:40:35 +0000 (14:40 -0500)
commitaac59c116456f8ce617d5b218e7ee4f044f56e6c
tree617a8c8a94e03de65db4435b649a61e446b3aa6e
parentd42269d7c85308abdbf8cee38b1a1097249eb38b
add basic dns record parsing functions

based on patch by Timo Teräs, with some corrections to bounds checking
code and other minor changes.

while they are borderline scope creep, the functions added are fairly
small and are roughly the minimum code needed to use the results of
the res_query API without re-implementing error-prone DNS packet
parsing, and they are used in practice by some kerberos related
software and possibly other things. at this time there is no intent to
implement further nameser.h API functions.
include/arpa/nameser.h
src/network/ns_parse.c [new file with mode: 0644]