blob: 2ba6f48611990b1e4c757dea254b19c2093c909e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
<?xml version="1.0" encoding="latin1" ?>
<!DOCTYPE appref SYSTEM "appref.dtd">
<appref>
<header>
<copyright>
<year>1999</year><year>2010</year>
<holder>Ericsson AB. All Rights Reserved.</holder>
</copyright>
<legalnotice>
The contents of this file are subject to the Erlang Public License,
Version 1.1, (the "License"); you may not use this file except in
compliance with the License. You should have received a copy of the
Erlang Public License along with this software. If not, it can be
retrieved online at http://www.erlang.org/.
Software distributed under the License is distributed on an "AS IS"
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
the License for the specific language governing rights and limitations
under the License.
</legalnotice>
<title>ssl</title>
<file>ssl_app.sgml</file>
</header>
<app>ssl</app>
<appsummary>The SSL application provides secure communication over
sockets.</appsummary>
<section>
<title>Environment</title>
<p>The following application environment configuration parameters
are defined for the SSL application. Refer to application(3) for
more information about configuration parameters.
</p>
<p>Note that the environment parameters can be set on the command line,
for instance,</p>
<p><c>erl ... -ssl protocol_version '[sslv3, tlsv1]' ...</c>.
</p>
<taglist>
<tag><c><![CDATA[protocol_version = [sslv3|tlsv1] <optional>]]></c>.</tag>
<item>
<p>Protocol that will be supported by started clients and
servers. If this option is not set it will default to all
protocols currently supported by the erlang ssl application.
Note that this option may be overridden by the version option
to ssl:connect/[2,3] and ssl:listen/2.
</p>
</item>
<tag><c><![CDATA[session_lifetime = integer() <optional>]]></c></tag>
<item>
<p>The lifetime of session data in seconds.
</p>
</item>
<tag><c><![CDATA[session_cb = atom() <optional>]]></c></tag>
<item>
<p>
Name of session cache callback module that implements
the ssl_session_cache_api behavior, defaults to
ssl_session_cache.erl.
</p>
</item>
<tag><c><![CDATA[session_cb_init_args = list() <optional>]]></c></tag>
<item>
<p>
List of arguments to the init function in session cache
callback module, defaults to [].
</p>
</item>
</taglist>
</section>
<section>
<title>SEE ALSO</title>
<p>application(3)</p>
</section>
</appref>
|