1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-28 07:21:54 +03:00
samba-mirror/source3/nsswitch
Tim Potter 93fb9f76e2 Use cli_nt_login_network() instead of domain_client_validate() to perform
pam authentication.  This allows us to link in less other crap.

Authenticating with a challenge/response doesn't seem to work though - we
always get back NT_STATUS_WRONG_PASSWORD.
(This used to be commit d85aa1ce83)
2001-11-05 00:21:17 +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 This commit is number 4 of 4. 2001-10-29 07:35:11 +00:00
wb_common.c move to SAFE_FREE() 2001-09-17 04:52:45 +00:00
wbinfo.c 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
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 Resurrected sam sequence number code. 2001-10-14 08:26:45 +00:00
winbindd_cm.c Use cli_nt_login_network() instead of domain_client_validate() to perform 2001-11-05 00:21:17 +00:00
winbindd_glue.c move to SAFE_FREE() 2001-09-17 04:52:45 +00:00
winbindd_group.c Added some extra fields to the auth_serversupplied_info structure. 2001-10-31 06:20:58 +00:00
winbindd_idmap.c move to SAFE_FREE() 2001-09-17 04:52:45 +00:00
winbindd_misc.c Added NT_USER_TOKEN into server_info to fix extra groups problem. 2001-11-03 23:34:24 +00:00
winbindd_nss.h move to SAFE_FREE() 2001-09-17 04:52:45 +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 Use cli_nt_login_network() instead of domain_client_validate() to perform 2001-11-05 00:21:17 +00:00
winbindd_sid.c Compile fixes for dynamic samr_query_userinfo() stuff. 2001-05-14 03:58:49 +00:00
winbindd_user.c Hey where did those 4 character tabs come from? 2001-10-29 04:57:20 +00:00
winbindd_util.c Added some extra fields to the auth_serversupplied_info structure. 2001-10-31 06:20:58 +00:00
winbindd.c Got the rest of the group functions working. Did some reformatting (man 2001-10-10 23:08:13 +00:00
winbindd.h Fixed some memory leaks introduced by connection handling rewrite, as well 2001-10-19 08:22:52 +00:00
wins.c Removed 'extern int DEBUGLEVEL' as it is now in the smb.h header. 2001-10-02 04:29:50 +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