diff options
author | Dan Gudmundsson <[email protected]> | 2012-04-20 13:05:17 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2012-06-08 16:52:06 +0200 |
commit | 3dab268b2507e296eaae420086c9604397e37349 (patch) | |
tree | 346b20949b630f8a7343f2a43bfa97b5daa65343 /lib/ssl/src/ssl_connection.erl | |
parent | eaa2564532d6ac87fda2aa9a1d6bce0ac9d35829 (diff) | |
download | otp-3dab268b2507e296eaae420086c9604397e37349.tar.gz otp-3dab268b2507e296eaae420086c9604397e37349.tar.bz2 otp-3dab268b2507e296eaae420086c9604397e37349.zip |
ssl: Use md5 as file ref id instead of filenames
Aviods storing a lot of data
Diffstat (limited to 'lib/ssl/src/ssl_connection.erl')
-rw-r--r-- | lib/ssl/src/ssl_connection.erl | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/ssl/src/ssl_connection.erl b/lib/ssl/src/ssl_connection.erl index cadc7f4185..3541c9371a 100644 --- a/lib/ssl/src/ssl_connection.erl +++ b/lib/ssl/src/ssl_connection.erl @@ -320,14 +320,7 @@ init([Role, Host, Port, Socket, {SSLOpts0, _} = Options, User, CbInfo]) -> throw:Error -> gen_fsm:enter_loop(?MODULE, [], error, {Error,State0}, get_timeout(State0)) end. - -%%-------------------------------------------------------------------- -%% Description:There should be one instance of this function for each -%% possible state name. Whenever a gen_fsm receives an event sent -%% using gen_fsm:send_event/2, the instance of this function with the -%% same name as the current state name StateName is called to handle -%% the event. It is also called if a timeout occurs. -%% + %%-------------------------------------------------------------------- %% Description:There should be one instance of this function for each %% possible state name. Whenever a gen_fsm receives an event sent |