summaryrefslogtreecommitdiffstats
path: root/doc/ssl/SSL_CTX_set_min_proto_version.pod
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2016-10-26 13:56:48 -0400
committerRich Salz <rsalz@openssl.org>2016-10-26 13:59:52 -0400
commit99d63d4662e16afbeff49f29b48f1c87d5558ed0 (patch)
tree6512ff02cd93985526080f05ab2b5408235b19a9 /doc/ssl/SSL_CTX_set_min_proto_version.pod
parent4f3015bb30b7d95bb97408776b70e6a35fb91e8a (diff)
Move manpages to man[1357] structure.
Move manpages to manX directories Add Windows/VMS install fix from Richard Levitte Update README Fix typo's Remove some duplicates Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'doc/ssl/SSL_CTX_set_min_proto_version.pod')
-rw-r--r--doc/ssl/SSL_CTX_set_min_proto_version.pod60
1 files changed, 0 insertions, 60 deletions
diff --git a/doc/ssl/SSL_CTX_set_min_proto_version.pod b/doc/ssl/SSL_CTX_set_min_proto_version.pod
deleted file mode 100644
index 3e9fe80b70..0000000000
--- a/doc/ssl/SSL_CTX_set_min_proto_version.pod
+++ /dev/null
@@ -1,60 +0,0 @@
-=pod
-
-=head1 NAME
-
-SSL_CTX_set_min_proto_version, SSL_CTX_set_max_proto_version,
-SSL_set_min_proto_version, SSL_set_max_proto_version - Set minimum
-and maximum supported protocol version
-
-=head1 SYNOPSIS
-
- #include <openssl/ssl.h>
-
- int SSL_CTX_set_min_proto_version(SSL_CTX *ctx, int version);
- int SSL_CTX_set_max_proto_version(SSL_CTX *ctx, int version);
- int SSL_set_min_proto_version(SSL *ssl, int version);
- int SSL_set_max_proto_version(SSL *ssl, int version);
-
-=head1 DESCRIPTION
-
-The functions set the minimum and maximum supported protocol versions
-for the B<ctx> or B<ssl>.
-This works in combination with the options set via
-L<SSL_CTX_set_options(3)> that also make it possible to disable
-specific protocol versions.
-Use these functions instead of disabling specific protocol versions.
-
-Setting the minimum or maximum version to 0, will enable protocol
-versions down to the lowest version, or up to the highest version
-supported by the library, respectively.
-
-Currently supported versions are B<SSL3_VERSION>, B<TLS1_VERSION>,
-B<TLS1_1_VERSION>, B<TLS1_2_VERSION> for TLS and B<DTLS1_VERSION>,
-B<DTLS1_2_VERSION> for DTLS.
-
-=head1 RETURN VALUES
-
-These functions return 1 on success and 0 on failure.
-
-=head1 NOTES
-
-All these functions are implemented using macros.
-
-=head1 HISTORY
-
-The functions were added in OpenSSL 1.1.0
-
-=head1 SEE ALSO
-
-L<SSL_CTX_set_options(3)>, L<SSL_CONF_cmd(3)>
-
-=head1 COPYRIGHT
-
-Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
-
-Licensed under the OpenSSL license (the "License"). You may not use
-this file except in compliance with the License. You can obtain a copy
-in the file LICENSE in the source distribution or at
-L<https://www.openssl.org/source/license.html>.
-
-=cut