egs_network: Stay on the old SSL implementation until the new one works better.

This commit is contained in:
Loïc Hoguin 2010-11-17 23:36:35 +01:00
parent d7f41a8ee5
commit 48728337c7

View File

@ -21,7 +21,7 @@
-export([listen/2, recv/3]). %% API.
-export([accept/2]). %% Internal.
-define(OPTIONS, [binary, {active, true}, {reuseaddr, true}, {ssl_imp, new}, {certfile, "priv/ssl/servercert.pem"}, {keyfile, "priv/ssl/serverkey.pem"}, {password, "alpha"}]).
-define(OPTIONS, [binary, {active, true}, {reuseaddr, true}, {ssl_imp, old}, {certfile, "priv/ssl/servercert.pem"}, {keyfile, "priv/ssl/serverkey.pem"}, {password, "alpha"}]).
%% @doc Listen for connections.
listen(Port, CallbackMod) ->