mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-28 16:34:13 +01:00
Merge pull request #518 from liudanking/master
fix otp version check in ejabberd_listener.erl listen_tcp/5
This commit is contained in:
commit
b81b0d0be9
@ -195,9 +195,11 @@ listen_tcp(PortIP, Module, SockOpts, Port, IPS) ->
|
|||||||
ets:delete(listen_sockets, Port),
|
ets:delete(listen_sockets, Port),
|
||||||
ListenSocket;
|
ListenSocket;
|
||||||
_ ->
|
_ ->
|
||||||
SockOpts2 = try erlang:system_info(otp_release) >= "R13B" of
|
SockOpts2 = try erlang:system_info(otp_release) of
|
||||||
true -> [{send_timeout_close, true} | SockOpts];
|
EVsn when EVsn >= "R13B"; EVsn >= "17" ->
|
||||||
false -> SockOpts
|
[{send_timeout_close, true} | SockOpts];
|
||||||
|
_ ->
|
||||||
|
SockOpts
|
||||||
catch
|
catch
|
||||||
_:_ -> []
|
_:_ -> []
|
||||||
end,
|
end,
|
||||||
|
Loading…
Reference in New Issue
Block a user