From 9c2fcb689b647be60731ea8ce8abfe22c0e63dde Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 7 Apr 2010 17:45:12 +0200 Subject: s3:winbind: Fork multiple children per domain 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. --- source3/include/proto.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/include') diff --git a/source3/include/proto.h b/source3/include/proto.h index f3ec4d16c6..de6e7acc9e 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -3230,6 +3230,7 @@ bool lp_winbind_offline_logon(void); bool lp_winbind_normalize_names(void); bool lp_winbind_rpc_only(void); bool lp_create_krb5_conf(void); +int lp_winbind_max_domain_connections(void); const char *lp_idmap_backend(void); bool lp_idmap_read_only(void); int lp_idmap_cache_time(void); -- cgit