Merge pull request #4025 from jpds/increase-default-backlog

ejabberd_listener.erl: Increase default listen queue backlog value
This commit is contained in:
Paweł Chmielowski 2023-07-11 12:19:33 +02:00 committed by GitHub
commit fafb48e88f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -708,6 +708,6 @@ listen_options() ->
{ip, {0,0,0,0}}, {ip, {0,0,0,0}},
{accept_interval, 0}, {accept_interval, 0},
{send_timeout, 15000}, {send_timeout, 15000},
{backlog, 5}, {backlog, 128},
{use_proxy_protocol, false}, {use_proxy_protocol, false},
{supervisor, true}]. {supervisor, true}].