1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00
samba-mirror/source3/nsswitch
Andrew Tridgell 3278f563b9 finally worked out how to do ldap lookups by binary blobs, so I can
now do searches on SID. This allows me to do a true ldap sid_to_name()
function

one one function to go!
(This used to be commit 7d44aa3915)
2001-12-05 04:48:51 +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 Fixed parse_domain_user to be bool. 2001-12-05 04:17:39 +00:00
wb_common.c move to SAFE_FREE() 2001-09-17 04:52:45 +00:00
wbinfo.c Correct message on wbinfo fail to open config file. 2001-12-04 21:30:52 +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 fixed the nsswitch initgroups code 2001-12-03 03:53:57 +00:00
winbindd_ads.c finally worked out how to do ldap lookups by binary blobs, so I can 2001-12-05 04:48:51 +00:00
winbindd_cache.c added name_to_sid to the backend 2001-12-03 08:17:46 +00:00
winbindd_cm.c The beginnings of alternative backends for winbindd 2001-12-01 12:31:43 +00:00
winbindd_group.c finally worked out how to do ldap lookups by binary blobs, so I can 2001-12-05 04:48:51 +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 Fixed delete on close bug. Added core dump code to winbindd. 2001-11-23 11:18:20 +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 Fixed parse_domain_user to be bool. 2001-12-05 04:17:39 +00:00
winbindd_proto.h finally worked out how to do ldap lookups by binary blobs, so I can 2001-12-05 04:48:51 +00:00
winbindd_rpc.c finally worked out how to do ldap lookups by binary blobs, so I can 2001-12-05 04:48:51 +00:00
winbindd_sid.c Fixed parse_domain_user to be bool. 2001-12-05 04:17:39 +00:00
winbindd_user.c finally worked out how to do ldap lookups by binary blobs, so I can 2001-12-05 04:48:51 +00:00
winbindd_util.c finally worked out how to do ldap lookups by binary blobs, so I can 2001-12-05 04:48:51 +00:00
winbindd.c Fixed delete on close bug. Added core dump code to winbindd. 2001-11-23 11:18:20 +00:00
winbindd.h finally worked out how to do ldap lookups by binary blobs, so I can 2001-12-05 04:48:51 +00:00
wins.c Got medieval on another pointless extern. Removed extern struct ipzero 2001-11-26 03:11:44 +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