24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-08 21:43:07 +02:00

Fix bug that forgot listener options when using R12 or older.

SVN Revision: 2736
This commit is contained in:
Badlop 2009-11-06 18:33:37 +00:00
parent bde4b7b057
commit eca650efac

View File

@ -129,7 +129,7 @@ init_udp(PortIP, Module, Opts, SockOpts, Port, IPS) ->
init_tcp(PortIP, Module, Opts, SockOpts, Port, IPS) ->
SockOpts2 = case erlang:system_info(otp_release) >= "R13B" of
true -> [{send_timeout_close, true} | SockOpts];
false -> []
false -> SockOpts
end,
Res = gen_tcp:listen(Port, [binary,
{packet, 0},