25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-22 16:20:52 +01:00

* src/ejabberd_listener.erl: Fixed SSL options

SVN Revision: 133
This commit is contained in:
Alexey Shchepin 2003-08-30 19:19:23 +00:00
parent 141e99aaa9
commit ee72872087
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2003-08-30 Alexey Shchepin <alexey@sevcom.net>
* src/ejabberd_listener.erl: Fixed SSL options
2003-08-18 Alexey Shchepin <alexey@sevcom.net>
* src/ejabberd_c2s.erl: Support for filtering of incoming messages

View File

@ -75,9 +75,7 @@ init_ssl(Port, Module, Opts, SSLOpts) ->
{ok, ListenSocket} = ssl:listen(Port, [binary,
{packet, 0},
{active, false},
{nodelay, true},
{backlog, 0},
{cachetimout, 0} |
{nodelay, true} |
SSLOpts]),
accept_ssl(ListenSocket, Module, Opts).