1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00
samba-mirror/source3/nsswitch
Jeremy Allison 1db30a338c Got positive and negative name caching working correctly with lookupname/lookupsid.
There was a bug in cli_lsa_lookup_name/lookup_sid where NT_STATUS_NONE_MAPPED was
being mapped to NT_STATUS_OK, and also the *wrong* number of entries mapped
was being returned. The correct field is mapped_count, *NOT* num_entries.
Jeremy.
(This used to be commit 9f8c644abc)
2001-11-22 08:31:50 +00:00
..
.cvsignore Ignore *.po files. 2001-05-07 05:04:53 +00:00
nss.h fixed a bunch of compilation errors on Solaris, mostly people getting NSS_STATUS and WINBINDD error codes mixed up 2001-09-05 07:55:54 +00:00
pam_winbind.c Merge from TNG branch. 2001-05-04 00:43:20 +00:00
pam_winbind.h move to SAFE_FREE() 2001-09-17 04:52:45 +00:00
README added basic nsswitch support - this allows you to use a "wins" entry 1999-12-17 06:11:25 +00:00
wb_client.c Fix winbind client code so that winbind calls are not made if the 2001-11-13 21:28:31 +00:00
wb_common.c move to SAFE_FREE() 2001-09-17 04:52:45 +00:00
wbinfo.c Store some path names in global variables initialized to configure 2001-11-19 02:49:53 +00:00
winbind_nss_config.h more warning fixes on solaris 2001-09-05 08:11:17 +00:00
winbind_nss_solaris.c move to SAFE_FREE() 2001-09-17 04:52:45 +00:00
winbind_nss.c the nss and pam modules in winbind don't have strchr_m() yet, so use 2001-07-18 21:50:20 +00:00
winbindd_cache.c Added debugs to track down sequence lookup problems. 2001-11-22 07:24:07 +00:00
winbindd_cm.c Tidyup formatting a bit (spaces->tabs) whilst reading new code to understand 2001-11-15 19:40:00 +00:00
winbindd_group.c Caching user, group and domain sam handles was a stupid idea. 2001-11-15 06:55:56 +00:00
winbindd_idmap.c Random connection robustness related fixes. Display some debugs about 2001-11-14 06:18:13 +00:00
winbindd_misc.c Get list of trusted domains if we haven't fetched them yet. 2001-11-15 03:29:00 +00:00
winbindd_nss.h Preparing to implement +ve and -ve caching for lookupname/lookupsid calls. 2001-11-21 08:36:43 +00:00
winbindd_pam.c Use cli_nt_login_network() instead of domain_client_validate() to perform 2001-11-05 00:21:17 +00:00
winbindd_proto.h Added free_domain_info() function. 2001-11-15 03:33:56 +00:00
winbindd_sid.c Compile fixes for dynamic samr_query_userinfo() stuff. 2001-05-14 03:58:49 +00:00
winbindd_user.c Added transparent +ve caching for lookupname/lookupsid. -ve caching can 2001-11-21 09:59:15 +00:00
winbindd_util.c Got positive and negative name caching working correctly with lookupname/lookupsid. 2001-11-22 08:31:50 +00:00
winbindd.c W2K doesn't seem to respond to *#0 names in node status. Ensure name 2001-11-21 23:00:59 +00:00
winbindd.h Added transparent +ve caching for lookupname/lookupsid. -ve caching can 2001-11-21 09:59:15 +00:00
wins.c Store some path names in global variables initialized to configure 2001-11-19 02:49:53 +00:00

This extension provides a "wins" module for NSS on glibc2/Linux.  This
allows you to use a WINS entry in /etc/nsswitch.conf for hostname
resolution, allowing you to resolve netbios names via start unix
gethostbyname() calls. The end result is that you can use netbios
names as host names in unix apps.

1) run configure
2) run "make nsswitch"
3) cp nsswitch/libnss_wins.so /lib/libnss_wins.so.2
4) add a wins entry to the hosts line in /etc/nsswitch.conf
5) use it

tridge@linuxcare.com