1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/source/nsswitch
Jeremy Allison 842e08e52a Forward port the change to talloc_init() to make all talloc contexts
named. Ensure we can query them.
Jeremy.
0001-01-01 00:00:00 +00:00
..
.cvsignore Ignore winbindd_proto.h 0001-01-01 00:00:00 +00:00
hp_nss_common.h HP-UX 10.20 compiles fixes from SAMBA_2_2 0001-01-01 00:00:00 +00:00
hp_nss_dbdefs.h Removed version number from file header. 0001-01-01 00:00:00 +00:00
nss.h HP-UX 10.20 compiles fixes from SAMBA_2_2 0001-01-01 00:00:00 +00:00
pam_winbind.c Updates to winbind's PAM client and server - make the debug logs 0001-01-01 00:00:00 +00:00
pam_winbind.h Winbind client-side cleanups. 0001-01-01 00:00:00 +00:00
README added basic nsswitch support - this allows you to use a "wins" entry 0001-01-01 00:00:00 +00:00
wb_client.c Add some more const :-) 0001-01-01 00:00:00 +00:00
wb_common.c Remove extra headers, and ensure that we correctly bail out of winbindd if we 0001-01-01 00:00:00 +00:00
wbinfo.c Removed global_myworkgroup, global_myname, global_myscope. Added liberal 0001-01-01 00:00:00 +00:00
winbind_client.h This is the 'main' inclue for for winbind clients - all clients should include 0001-01-01 00:00:00 +00:00
winbind_nss_config.h fix getpass replacement check (i thought I fixed this a few days 0001-01-01 00:00:00 +00:00
winbind_nss_solaris.c More winbind for HPUX updates from Don Mccall. I think JRA has already 0001-01-01 00:00:00 +00:00
winbind_nss.c Winbind client-side cleanups. 0001-01-01 00:00:00 +00:00
winbindd_ads.c Forward port the change to talloc_init() to make all talloc contexts 0001-01-01 00:00:00 +00:00
winbindd_cache.c Fix spelling of background_process. 0001-01-01 00:00:00 +00:00
winbindd_cm.c merge of get_dc_name()-like code from APP_HEAD; better support password server = DC1 * 0001-01-01 00:00:00 +00:00
winbindd_dual.c remove accidental debug code.. 0001-01-01 00:00:00 +00:00
winbindd_group.c Forward port the change to talloc_init() to make all talloc contexts 0001-01-01 00:00:00 +00:00
winbindd_idmap.c more debug classess activated 0001-01-01 00:00:00 +00:00
winbindd_misc.c Removed global_myworkgroup, global_myname, global_myscope. Added liberal 0001-01-01 00:00:00 +00:00
winbindd_nss.h After consultation with tpot, remove the 'winbind_domain' environment 0001-01-01 00:00:00 +00:00
winbindd_pam.c Forward port the change to talloc_init() to make all talloc contexts 0001-01-01 00:00:00 +00:00
winbindd_rpc.c Forward port the change to talloc_init() to make all talloc contexts 0001-01-01 00:00:00 +00:00
winbindd_sid.c Winbind updates! 0001-01-01 00:00:00 +00:00
winbindd_user.c Forward port the change to talloc_init() to make all talloc contexts 0001-01-01 00:00:00 +00:00
winbindd_util.c Forward port the change to talloc_init() to make all talloc contexts 0001-01-01 00:00:00 +00:00
winbindd_wins.c Winbind updates! 0001-01-01 00:00:00 +00:00
winbindd.c Forward port the change to talloc_init() to make all talloc contexts 0001-01-01 00:00:00 +00:00
winbindd.h merge from APP_HEAD 0001-01-01 00:00:00 +00:00
wins.c Kill off codepage related stuff, now we don't use codepages any more. 0001-01-01 00:00:00 +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