summaryrefslogtreecommitdiffstats
path: root/source3/libads/dns.h
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-04-26 09:49:08 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-04-26 17:16:34 +1000
commitc18954775e53a0f4dec4e36234dc45559055f96d (patch)
tree1a77efa4d9a08da2e90c7e147552cd11bca44b68 /source3/libads/dns.h
parent3a88d49d12fe6c74dffe3e8d82235c71511cc07c (diff)
downloadsamba-c18954775e53a0f4dec4e36234dc45559055f96d.tar.gz
samba-c18954775e53a0f4dec4e36234dc45559055f96d.tar.xz
samba-c18954775e53a0f4dec4e36234dc45559055f96d.zip
libcli/dns Improve dns_hosts_file, using Samba3's struct dns_rr_srv
By reworking the 'fake DNS' file to use struct dns_rr_srv it should be possible to emulate that resolver layer as well as the Samba4 sockaddr_storage* based layer. This will then give us a common DNS emulation for 'make test'. Andrew Bartlett
Diffstat (limited to 'source3/libads/dns.h')
-rw-r--r--source3/libads/dns.h37
1 files changed, 1 insertions, 36 deletions
diff --git a/source3/libads/dns.h b/source3/libads/dns.h
index b747e97bb77..f53153ba263 100644
--- a/source3/libads/dns.h
+++ b/source3/libads/dns.h
@@ -20,42 +20,7 @@
#ifndef _ADS_DNS_H
#define _ADS_DNS_H
-/* DNS query section in replies */
-
-struct dns_query {
- const char *hostname;
- uint16 type;
- uint16 in_class;
-};
-
-/* DNS RR record in reply */
-
-struct dns_rr {
- const char *hostname;
- uint16 type;
- uint16 in_class;
- uint32 ttl;
- uint16 rdatalen;
- uint8 *rdata;
-};
-
-/* SRV records */
-
-struct dns_rr_srv {
- const char *hostname;
- uint16 priority;
- uint16 weight;
- uint16 port;
- size_t num_ips;
- struct sockaddr_storage *ss_s; /* support multi-homed hosts */
-};
-
-/* NS records */
-
-struct dns_rr_ns {
- const char *hostname;
- struct sockaddr_storage ss;
-};
+#include "libcli/dns/dns.h"
/* The following definitions come from libads/dns.c */