mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
31d85404fc
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>
17 lines
527 B
Python
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())
|