Skip to content

Commit

Permalink
Merge branch 'maint'
Browse files Browse the repository at this point in the history
  • Loading branch information
IngelaAndin committed Oct 23, 2024
2 parents 185681c + 649559f commit 8dd7759
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/eldap/src/eldap.erl
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ All TCP socket options are accepted except `active`, `binary`, `deliver`,
{log, function()} |
{timeout, integer()} |
{ssl, boolean()} |
{sslopts, list()} |
{tcpopts, list()}],
{sslopts, [ssl:tls_client_option()]} |
{tcpopts, [inet:inet_backend() | gen_tcp:connect_option()]}],
Handle :: handle(),
Reason :: term().

Expand All @@ -219,7 +219,7 @@ Same as start_tls(Handle, Options, infinity)
-doc(#{since => <<"OTP R16B03">>}).
-spec start_tls(Handle, TlsOptions) -> ok |{ok, Refs} | {error, Reason} when
Handle :: handle(),
TlsOptions :: ssl:tls_client_option(),
TlsOptions :: [ssl:tls_client_option()],
Refs :: {referral, referrals()},
Reason :: term().
start_tls(Handle, TlsOptions) ->
Expand Down Expand Up @@ -254,7 +254,7 @@ upgrade (phase 1).
-doc(#{since => <<"OTP R16B03">>}).
-spec start_tls(Handle, TlsOptions, Timeout) -> ok | {ok, Refs} | {error, Reason} when
Handle :: handle(),
TlsOptions :: ssl:tls_client_option(),
TlsOptions :: [ssl:tls_client_option()],
Timeout :: infinity | pos_integer(),
Refs :: {referral, referrals()},
Reason :: term().
Expand Down

0 comments on commit 8dd7759

Please sign in to comment.