diff options
| author | Steven Fackler <[email protected]> | 2015-10-02 22:23:48 -0400 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-10-02 22:23:48 -0400 |
| commit | 9044cd6b9ea58070d0a9d64505d5396071aeb99e (patch) | |
| tree | 1381a3c1a4d035591c58e7b814d3828b1099b407 | |
| parent | Merge pull request #263 from jedisct1/ecdh_auto (diff) | |
| parent | Update documentation about SSLv23 (diff) | |
| download | rust-openssl-9044cd6b9ea58070d0a9d64505d5396071aeb99e.tar.xz rust-openssl-9044cd6b9ea58070d0a9d64505d5396071aeb99e.zip | |
Merge pull request #279 from jtdowney/sslv23_docs
Update documentation about SSLv23
| -rw-r--r-- | openssl/src/ssl/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openssl/src/ssl/mod.rs b/openssl/src/ssl/mod.rs index a0553b44..360f3f3e 100644 --- a/openssl/src/ssl/mod.rs +++ b/openssl/src/ssl/mod.rs @@ -106,7 +106,8 @@ pub enum SslMethod { #[cfg(feature = "sslv2")] /// Only support the SSLv2 protocol, requires the `sslv2` feature. Sslv2, - /// Support the SSLv2, SSLv3 and TLSv1 protocols. + /// Support the SSLv2, SSLv3, TLSv1, TLSv1.1, and TLSv1.2 protocols depending on what the + /// linked OpenSSL library supports. Sslv23, /// Only support the SSLv3 protocol. Sslv3, |