factor resolv.conf parsing out of res_msend to its own file
authorRich Felker <dalias@aerifal.cx>
Thu, 28 Jan 2016 23:24:34 +0000 (18:24 -0500)
committerRich Felker <dalias@aerifal.cx>
Thu, 28 Jan 2016 23:39:22 +0000 (18:39 -0500)
commitd6cb08bcaca4ff1f921375510ca72bccea969c75
tree35a357b3c880d2a71aac9056ddb30c1646418d77
parent19df86cbb39f2429f7c7e20c99c606c38a5fd4e9
factor resolv.conf parsing out of res_msend to its own file

this change is made in preparation for adding search domains, for
which higher-level code will need to parse resolv.conf. simply parsing
it twice for each lookup would be one reasonable option, but the
existing parser code was buggy anyway, which suggested to me that it's
a bad idea to have two variants of this code in two different places.

the old code in res_msend potentially misinterpreted overly long lines
in resolv.conf, and stopped parsing after it found 3 nameservers, even
if there were relevant options left to be parsed later in the file.
src/network/lookup.h
src/network/res_msend.c
src/network/resolvconf.c [new file with mode: 0644]