mirror of
https://github.com/samba-team/samba.git
synced 2025-08-26 01:49:31 +03:00
rpcd: Increase listening queue
Allow more waiters under load.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=15310
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
(cherry picked from commit f23eb1b3b7
)
This commit is contained in:
committed by
Jule Anger
parent
04e0412a65
commit
06483b02e9
@ -1689,7 +1689,7 @@ static void rpc_server_setup_got_endpoints(struct tevent_req *subreq)
|
||||
}
|
||||
|
||||
for (j=0; j<e->num_fds; j++) {
|
||||
ret = listen(e->fds[j], 5);
|
||||
ret = listen(e->fds[j], 256);
|
||||
if (ret == -1) {
|
||||
tevent_req_nterror(
|
||||
req, map_nt_error_from_unix(errno));
|
||||
|
Reference in New Issue
Block a user