diff options
| -rw-r--r-- | lib/ssl/doc/src/ssl.xml | 25 | 
1 files changed, 7 insertions, 18 deletions
diff --git a/lib/ssl/doc/src/ssl.xml b/lib/ssl/doc/src/ssl.xml index b8f7501915..eb31b35e1e 100644 --- a/lib/ssl/doc/src/ssl.xml +++ b/lib/ssl/doc/src/ssl.xml @@ -793,17 +793,19 @@ fun(srp, Username :: string(), UserState :: term()) ->      </func>      <func> -      <name>negotiated_next_protocol(Socket) -> {ok, Protocol} | {error, next_protocol_not_negotiated}</name> -      <fsummary>Returns the Next Protocol negotiated.</fsummary> +      <name>negotiated_protocol(Socket) -> {ok, Protocol} | {error, protocol_not_negotiated}</name> +      <fsummary>Returns the protocol negotiated through ALPN or NPN extensions.</fsummary>        <type>          <v>Socket = sslsocket()</v>          <v>Protocol = binary()</v>        </type>        <desc> -        <p>Returns the Next Protocol negotiated.</p> +        <p> +          Returns the protocol negotiated through ALPN or NPN extensions. +        </p>        </desc>      </func> - +          <func>        <name>peercert(Socket) -> {ok, Cert} | {error, Reason}</name>        <fsummary>Returns the peer certificate.</fsummary> @@ -1084,20 +1086,7 @@ fun(srp, Username :: string(), UserState :: term()) ->  	</taglist>        </desc>      </func> -    <func> -      <name>negotiated_protocol(Socket) -> {ok, Protocol} | {error, protocol_not_negotiated}</name> -      <fsummary>Returns the protocol negotiated through ALPN or NPN extensions.</fsummary> -      <type> -        <v>Socket = sslsocket()</v> -        <v>Protocol = binary()</v> -      </type> -      <desc> -        <p> -          Returns the protocol negotiated through ALPN or NPN extensions. -        </p> -      </desc> -    </func> - +       </funcs>     <section>  | 
