From 2535803627687f390cae6a95e88f70ff4d6cc67a Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 25 Jul 2014 12:44:53 -0700 Subject: s3: winbindd: Add new parameter "winbind request timeout" set to 60 seconds with man page. "This parameter specifies the number of seconds the winbindd daemon will wait before disconnecting either a client connection with no outstanding requests (idle) or a client connection with a request that has remained outstanding (hung) for longer than this number of seconds." Bug 3204 winbindd: Exceeding 200 client connections, no idle connection found https://bugzilla.samba.org/show_bug.cgi?id=3204 Signed-off-by: Jeremy Allison Reviewed-by: Ira Cooper --- lib/param/param_table.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'lib/param/param_table.c') diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 79b948980a..d3f60c3818 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -4037,6 +4037,15 @@ struct parm_struct parm_table[] = { .enum_list = NULL, .flags = FLAG_ADVANCED, }, + { + .label = "winbind request timeout", + .type = P_INTEGER, + .p_class = P_GLOBAL, + .offset = GLOBAL_VAR(winbind_request_timeout), + .special = NULL, + .enum_list = NULL, + .flags = FLAG_ADVANCED, + }, { .label = "winbind max clients", .type = P_INTEGER, -- cgit