Fix memory and port leak when TLS is enabled in HTTP (thanks to Brian Cully)(EJAB-1119)

SVN Revision: 2790
This commit is contained in:
Badlop 2009-12-07 17:33:02 +00:00
parent f044d6ed28
commit 1f5bf8fbc0
1 changed files with 7 additions and 1 deletions

View File

@ -35,6 +35,9 @@
receive_headers/1,
url_encode/1]).
%% Callbacks
-export([init/2]).
-include("ejabberd.hrl").
-include("jlib.hrl").
-include("ejabberd_http.hrl").
@ -79,7 +82,10 @@
start(SockData, Opts) ->
supervisor:start_child(ejabberd_http_sup, [SockData, Opts]).
start_link({SockMod, Socket}, Opts) ->
start_link(SockData, Opts) ->
{ok, proc_lib:spawn_link(ejabberd_http, init, [SockData, Opts])}.
init({SockMod, Socket}, Opts) ->
TLSEnabled = lists:member(tls, Opts),
TLSOpts = lists:filter(fun({certfile, _}) -> true;
(_) -> false