Removed ldns dependency

ldns dependency was only still around for constants defined in ldns/rr.h,
but those constants are RFC specified DNS constants, and to reduce deps
have been replicated in dns_utils.h instead of including ldns/rr.h.
This commit is contained in:
Thomas Winget
2014-09-24 17:15:49 -04:00
parent 4e2b2b942d
commit 2248124453
2 changed files with 9 additions and 4 deletions
+6
View File
@@ -32,6 +32,12 @@
namespace tools
{
// RFC defines for record types and classes for DNS, gleaned from ldns source
const static int DNS_CLASS_IN = 1;
const static int DNS_TYPE_A = 1;
const static int DNS_TYPE_TXT = 6;
const static int DNS_TYPE_AAAA = 8;
struct DNSResolverData;
/**