diff options
author | Jeremy Allison <jra@samba.org> | 2008-08-20 16:24:22 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2008-08-20 16:24:22 -0700 |
commit | 79150da70bbfddea3dc4013212fc7314b1004534 (patch) | |
tree | 2d815dd132fc52648a1075fd30b245bccfc727aa /source3/include | |
parent | 2fdcaab8c49259427df8ea00e47583772ea06602 (diff) | |
download | samba-79150da70bbfddea3dc4013212fc7314b1004534.tar.gz samba-79150da70bbfddea3dc4013212fc7314b1004534.tar.bz2 samba-79150da70bbfddea3dc4013212fc7314b1004534.zip |
Here is a re-working of the winbindd
reconnect code to cope with rebooting a DC. This
replaces the code I asked Volker to revert.
The logic is pretty simple. It adds a new parameter,
"winbind reconnect delay", set to 30 seconds by
default, which determines how long to wait between
connection attempts.
To avoid overwhelming the box with DC-probe
forked children, the code now keeps track of
the DC probe child per winbindd_domain struct
and only starts a new one if the existing one
has died.
I also added a little logic to make sure the
dc probe child always sends a message whatever
the reason for exit so we will always reschedule
another connect attempt.
Also added documentation.
Jeremy.
(This used to be commit 8027197635b988b3dcf9d3d00126a024e768fa62)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 3d0d419022..d3a8dbbc7f 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -6049,6 +6049,7 @@ int lp_directory_name_cache_size(int ); int lp_smb_encrypt(int ); char lp_magicchar(const struct share_params *p ); int lp_winbind_cache_time(void); +int lp_winbind_reconnect_delay(void); const char **lp_winbind_nss_info(void); int lp_algorithmic_rid_base(void); int lp_name_cache_timeout(void); |