summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd_ping_dc.c
AgeCommit message (Collapse)AuthorFilesLines
2012-08-15s3-winbind: Return the DC name from DC_PINGChristof Schmitt1-1/+8
The DC that was attempted to ping is useful for troubleshooting. Return the DC name in the response to the wbclient. Signed-off-by: Andrew Bartlett <abartlet@samba.org>
2012-08-15s3-winbind: Pass ping-dc result to clientChristof Schmitt1-1/+9
The client checks for an error code in response.data.auth.nt_status, make sure the result is stored there. Signed-off-by: Andrew Bartlett <abartlet@samba.org>
2011-01-21s3:winbind: Fork multiple children per domainVolker Lendecke1-1/+1
This makes us scale better with many simultaneous winbind requests, some of which might be slow. This implementation breaks offline logons, as the cached credentials are maintained in a child (this needs fixing). So, if the offline logons are active, only allow one DC connection. Probably the offline logon and the scalable file server cases are separate enough so that this patch is useful even with the restriction.
2011-01-11s3:winbindd: use ndr_wbint_c.h instead of cli_wbint.hStefan Metzmacher1-1/+1
metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue Jan 11 15:40:22 CET 2011 on sn-devel-104
2010-10-20s3: Use any_nt_status_not_ok in winbindVolker Lendecke1-5/+1
2010-08-16s3:winbindd: use dcerpc_wbint_* functions instead of rpccli_wbint_*Stefan Metzmacher1-2/+2
metze
2009-12-21s3:winbind: Add a lower-cost alternative to wbinfo -t: wbinfo --ping-dcVolker Lendecke1-0/+96
This just does a NULL RPC call through an existing NETLOGON connection. If someone knows an operation that "just works" and does not return NOT_SUPPORTED, please tell me :-)