diff options
author | Thomas Winget <tewinget@gmail.com> | 2014-09-24 23:19:14 -0400 |
---|---|---|
committer | Thomas Winget <tewinget@gmail.com> | 2014-09-24 23:45:01 -0400 |
commit | fab95aef64e2e5ba209ca2f27763a8db489d4294 (patch) | |
tree | c511ed7ecb8b3bdd2da26e55801d20f6326f656a /src/common/dns_utils.h | |
parent | Removed ldns dependency (diff) | |
download | monero-fab95aef64e2e5ba209ca2f27763a8db489d4294.tar.xz |
Remove LDNS dep and fix a bug in libunbound const correctness fix
Diffstat (limited to 'src/common/dns_utils.h')
-rw-r--r-- | src/common/dns_utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/dns_utils.h b/src/common/dns_utils.h index d22e3fb1f..dd6946dc4 100644 --- a/src/common/dns_utils.h +++ b/src/common/dns_utils.h @@ -35,7 +35,7 @@ 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_TXT = 16; const static int DNS_TYPE_AAAA = 8; struct DNSResolverData; |