summaryrefslogtreecommitdiffstats
path: root/source4/libcli/resolve/file.c
Commit message (Collapse)AuthorAgeFilesLines
* s4-libcli: Remove obsolete support for file resolving.Andreas Schneider2014-12-181-160/+0
| | | | | Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
* s4:libcli/resolve/file.c - fix "const" warningMatthias Dieter Wallnöfer2010-09-241-1/+1
| | | | Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s4-resolve: the file backend should not look at the name typeAndrew Tridgell2010-09-151-1/+1
| | | | | | this matches the behaviour of our DNS resolver Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-resolve: add a default domain for unqualified names in file backendAndrew Tridgell2010-09-021-5/+15
| | | | this better emulates what happens with real DNS
* s4-loadparm: 2nd half of lp_ to lpcfg_ conversionAndrew Tridgell2010-07-161-1/+1
| | | | | | | this converts all callers that use the Samba4 loadparm lp_ calling convention to use the lpcfg_ prefix. Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s4:libcli/resovle File based lookup module for DNS name typesAndrew Bartlett2010-03-111-0/+150
This uses the new common code to read a file containing DNS host names, so we don't have to use real DNS lookups in our test environment. Andrew Bartlett