1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/lib/addns/wscript_build
Volker Lendecke 31d85404fc libcli: Add ads_dns_query_srv_send()/recv()
This issues the "query" for SRV records site-aware and siteless. If
there are SRV records returned without IP addresses, it will issue A
and AAAA requests, waiting up to async_dns_timeout seconds. If that
timeout is reached, ads_dns_query_srv_recv() returns whatever is
around.

Superdebug added by Jeremy <jra@samba.org> :-)

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
2020-12-11 18:29:32 +00:00

17 lines
527 B
Python

#!/usr/bin/env python
bld.SAMBA_LIBRARY('addns',
source='''
dnsquery.c
dnsrecord.c
dnsutils.c
dnssock.c
dnsgss.c
dnsmarshall.c
error.c
dnsquery_srv.c
''',
public_deps='samba-util gssapi ndr resolv dns_lookup',
private_library=True,
vars=locals())