diff options
author | Lars Thorsen <[email protected]> | 2012-03-29 09:37:11 +0200 |
---|---|---|
committer | Lars Thorsen <[email protected]> | 2012-03-29 09:37:11 +0200 |
commit | a0f6dade73f118b7745fdb2e6ea1dfa8bd982947 (patch) | |
tree | 9863213b426f12962caae18a8a9a7d21538586e5 | |
parent | 472a3d910595d7de1e49f241c1d241827b5c0bf4 (diff) | |
parent | d1c8d6decb76c7025fe6ac8aae9f93c62322b560 (diff) | |
download | otp-a0f6dade73f118b7745fdb2e6ea1dfa8bd982947.tar.gz otp-a0f6dade73f118b7745fdb2e6ea1dfa8bd982947.tar.bz2 otp-a0f6dade73f118b7745fdb2e6ea1dfa8bd982947.zip |
Merge branch 'lars/orber/ssl-opts-documentation/OTP-9966' into maint
* lars/orber/ssl-opts-documentation/OTP-9966:
Fix descriptions of ssl_client_options and ssl_server_options
-rw-r--r-- | lib/orber/doc/src/ch_install.xml | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/lib/orber/doc/src/ch_install.xml b/lib/orber/doc/src/ch_install.xml index de9c0e3a9d..e5af2a4a27 100644 --- a/lib/orber/doc/src/ch_install.xml +++ b/lib/orber/doc/src/ch_install.xml @@ -396,13 +396,13 @@ nodeB@hostB> orber:start(). <row> <cell align="left" valign="middle">ssl_server_options</cell> <cell align="left" valign="middle">list()</cell> - <cell align="left" valign="middle">See the <seealso marker="ssl:ssl">SSL</seealso> application + <cell align="left" valign="middle">See the <seealso marker="ssl:ssl">SSL application</seealso> for valid options.</cell> </row> <row> <cell align="left" valign="middle">ssl_client_options</cell> <cell align="left" valign="middle">list()</cell> - <cell align="left" valign="middle">See the <seealso marker="ssl:ssl">SSL</seealso> application + <cell align="left" valign="middle">See the <seealso marker="ssl:ssl">SSL application</seealso> for valid options.</cell> </row> <row> @@ -631,9 +631,19 @@ nodeB@hostB> orber:start(). <c>{local, DefaultNATPort, [{Port, NATPort}]}</c>. See also <seealso marker="ch_install#firewall">Firewall Configuration</seealso>.</item> <tag><em>ssl_server_options</em></tag> - <item>the file path to a server side CA certificate.</item> + <item>A list of the SSL options when Orber is the server. + In general it's just to remove the 'ssl_server_' prefix from the old options, + i.e. <c>ssl_server_verify</c> will just be <c>verify</c> in this option list. + See the <seealso marker="ssl:ssl">SSL application</seealso> for the correct list of possible + options and their values. + </item> <tag><em>ssl_client_options</em></tag> - <item>The path to a file containing a chain of PEM encoded certificates.</item> + <item>A list of the SSL options when Orber is the client. + In general it's just to remove the <c>ssl_client_</c> prefix from the old options, + i.e. <c>ssl_client_depth</c> will just be <c>depth</c> in this option list. + See the <seealso marker="ssl:ssl">SSL application</seealso> for the correct list of possible + options and their values. + </item> <tag><em>iiop_ssl_out_keepalive</em></tag> <item>Enables periodic transmission on a connected socket, when no other data is being exchanged. If the other end does not respond, the |