Skip to content

Commit

Permalink
Fix docnits
Browse files Browse the repository at this point in the history
  • Loading branch information
fwh-dc committed Mar 21, 2024
1 parent 83295e0 commit 4d0464a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions doc/man1/openssl.pod
Original file line number Diff line number Diff line change
Expand Up @@ -609,12 +609,12 @@ the B<no_> options.
The B<no_*> options do not work with B<s_time> and B<ciphers> commands but work with
B<s_client> and B<s_server> commands.

=item B<-dtls>, B<-dtls1>, B<-dtls1_2>
=item B<-dtls>, B<-dtls1>, B<-dtls1_2>, B<-dtls1_3>

These options specify to use DTLS instead of TLS.
With B<-dtls>, clients will negotiate any supported DTLS protocol version.
Use the B<-dtls1> or B<-dtls1_2> options to support only DTLS1.0 or DTLS1.2,
respectively.
Use the B<-dtls1>, B<-dtls1_2> or B<-dtls1_3> options to support only DTLS1.0,
DTLS1.2 or DTLS1.3 respectively.

=back

Expand Down
5 changes: 3 additions & 2 deletions doc/perlvars.pm
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,12 @@ $OpenSSL::safe::opt_version_synopsis = ""
. "$OpenSSL::safe::opt_versiontls_synopsis\n"
. "[B<-dtls>]\n"
. "[B<-dtls1>]\n"
. "[B<-dtls1_2>]";
. "[B<-dtls1_2>]\n"
. "[B<-dtls1_3>]";
$OpenSSL::safe::opt_version_item = "\n"
. "$OpenSSL::safe::opt_versiontls_item\n"
. "\n"
. "=item B<-dtls>, B<-dtls1>, B<-dtls1_2>\n"
. "=item B<-dtls>, B<-dtls1>, B<-dtls1_2>, B<-dtls1_3>\n"
. "\n"
. "These specify the use of DTLS instead of TLS.\n"
. "See L<openssl(1)/TLS Version Options>.";
Expand Down

0 comments on commit 4d0464a

Please sign in to comment.