1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00
samba-mirror/source3/nsswitch
Tim Potter b800a36b1c Some patches to authentication:
- the usersupplied_info now contains a smb_username (as it comes across on
   the wire) and a unix_username (after being passed through mapping
   functions)

 - when doing security={server,domain} use the smb_username, otherwise use
   the unix_username
(This used to be commit d34fd8ec07)
2001-09-12 06:39: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 Try to fix build by adding autoconf tests for pam headers. 2001-05-22 21:47:11 +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 get rid of compiler warnings 2001-08-24 20:32:01 +00:00
wb_common.c get rid of compiler warnings 2001-08-24 20:32:01 +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 added solaris wrapper from tng 2001-04-25 06:45:27 +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 use LDSHFLAGS not -shared in several places 2001-06-04 05:13:59 +00:00
winbindd_glue.c the next stage in the NTSTATUS/WERROR change. smbd and nmbd now compile, but the client code still needs some work 2001-09-04 07:13:01 +00:00
winbindd_group.c more warning fixes on solaris 2001-09-05 08:11:17 +00:00
winbindd_idmap.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
winbindd_misc.c more static/dead fns 2001-09-10 11:45:09 +00:00
winbindd_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
winbindd_pam.c Some patches to authentication: 2001-09-12 06:39:50 +00:00
winbindd_proto.h convert more code to use XFILE 2001-09-10 12:46:42 +00:00
winbindd_sid.c Compile fixes for dynamic samr_query_userinfo() stuff. 2001-05-14 03:58:49 +00:00
winbindd_user.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
winbindd_util.c more static/dead fns 2001-09-10 11:45:09 +00:00
winbindd.c kill a dead fn and make a local one static 2001-09-10 11:34:32 +00:00
winbindd.h merge from APPLIANCE_TNG 2001-08-30 00:41:51 +00:00
wins.c The big character set handling changeover! 2001-07-04 07:15: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