From 57ade3a03d5bc56abebd172ced05520cbe5185f7 Mon Sep 17 00:00:00 2001 From: Julien Barbot Date: Sun, 17 Mar 2013 15:32:56 +0100 Subject: Fix SSL Next Protocol Negotiation documentation Fix inconsistencies Fix typos Fix data types definition --- lib/ssl/doc/src/ssl.xml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'lib/ssl/doc') diff --git a/lib/ssl/doc/src/ssl.xml b/lib/ssl/doc/src/ssl.xml index 6979fb5b5e..e9858a3220 100644 --- a/lib/ssl/doc/src/ssl.xml +++ b/lib/ssl/doc/src/ssl.xml @@ -80,8 +80,8 @@ {cacerts, [der_encoded()]} | {cacertfile, path()} | |{dh, der_encoded()} | {dhfile, path()} | {ciphers, ciphers()} | {ssl_imp, ssl_imp()} | {reuse_sessions, boolean()} | {reuse_session, fun()} - {next_protocols_advertised, list(binary()} | - {client_preferred_next_protocols, binary(), client | server, list(binary())} + {next_protocols_advertised, [binary()]} | + {client_preferred_next_protocols, client | server, [binary()]}

transportoption() = {cb_info, {CallbackModule::atom(), DataTag::atom(), ClosedTag::atom(), ErrTag:atom()}} @@ -313,25 +313,25 @@ fun(OtpCert :: #'OTPCertificate'{}, Event :: {bad_cert, Reason :: atom()} | when possible. - {client_preferred_next_protocols, Precedence:: server | client, ClientPrefs::[binary()]} - {client_preferred_next_protocols, Precedence:: server | client, ClientPrefs::[binary()] , Default :: binary()}} - -

Indicates the client will try to perform Next Protocol + {client_preferred_next_protocols, Precedence :: server | client, ClientPrefs :: [binary()]} + {client_preferred_next_protocols, Precedence :: server | client, ClientPrefs :: [binary()], Default :: binary()} + +

Indicates the client will try to perform Next Protocol Negotiation.

-

If precedence is server the negaotiated protocol will be the +

If precedence is server the negotiated protocol will be the first protocol that appears on the server advertised list that is - also on the clients preference list.

+ also on the client preference list.

-

If the precedence is client the negaotiated protocol will be the - first protocol that appears on the clients preference list that is +

If precedence is client the negotiated protocol will be the + first protocol that appears on the client preference list that is also on the server advertised list.

-

If the client does not support any of the servers advertised +

If the client does not support any of the server advertised protocols or the server does not advertise any protocols the client will fallback to the first protocol in its list or if a default is supplied it will fallback to that instead. If the - server does not support next protocol renegotiation the + server does not support Next Protocol Negotiation the connection will be aborted if no default protocol is supplied.

@@ -388,7 +388,7 @@ fun(OtpCert :: #'OTPCertificate'{}, Event :: {bad_cert, Reason :: atom()} | and CipherSuite is of type ciphersuite(). - {next_protocols_advertised, Protocols :: list(binary())} + {next_protocols_advertised, Protocols :: [binary()]} The list of protocols to send to the client if the client indicates it supports the Next Protocol extension. The client may select a protocol that is not on this list. The list of protocols must not contain an empty -- cgit v1.2.3