mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-10 15:47:30 +01:00
Changed default outgoing_s2s_families to IPv6 as servers are within datacenters
where IPv6 is more commonly enabled (contrary to clients), and if it's not present - it'll just fall back to IPv4.
This commit is contained in:
parent
5ad709a2e2
commit
25ddd7b152
@ -1203,11 +1203,11 @@ option)\&. Later, when memory drops below this
|
||||
percents\&.
|
||||
.RE
|
||||
.PP
|
||||
\fBoutgoing_s2s_families\fR: \fI[ipv4 | ipv6, \&.\&.\&.]\fR
|
||||
\fBoutgoing_s2s_families\fR: \fI[ipv6 | ipv4, \&.\&.\&.]\fR
|
||||
.RS 4
|
||||
Specify which address families to try, in what order\&. The default is
|
||||
\fI[ipv4, ipv6]\fR
|
||||
which means it first tries connecting with IPv4, if that fails it tries using IPv6\&.
|
||||
\fI[ipv6, ipv4]\fR
|
||||
which means it first tries connecting with IPv6, if that fails it tries using IPv4\&.
|
||||
.RE
|
||||
.sp
|
||||
\fINote\fR about the next option: added in 20\&.12:
|
||||
|
@ -614,7 +614,7 @@ options() ->
|
||||
{oom_killer, true},
|
||||
{oom_queue, 10000},
|
||||
{oom_watermark, 80},
|
||||
{outgoing_s2s_families, [inet, inet6]},
|
||||
{outgoing_s2s_families, [inet6, inet]},
|
||||
{outgoing_s2s_ipv4_address, undefined},
|
||||
{outgoing_s2s_ipv6_address, undefined},
|
||||
{outgoing_s2s_port, 5269},
|
||||
|
Loading…
Reference in New Issue
Block a user