ejabberd_listener.erl: Increase default listen queue backlog value to 128, which

is the default value on both Linux and FreeBSD.
This commit is contained in:
Jonathan Davies 2023-04-25 20:11:04 +01:00
parent d95a1bac3e
commit 040c72f1c8
1 changed files with 1 additions and 1 deletions

View File

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