From 78122a9d686e23c8d5cab21a26fb3061c550bcec Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Thu, 5 May 2016 13:32:27 -0700 Subject: Release v0.7.11 --- openssl-sys-extras/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openssl-sys-extras/src/lib.rs') diff --git a/openssl-sys-extras/src/lib.rs b/openssl-sys-extras/src/lib.rs index 97dc0c2b..a2acbd55 100644 --- a/openssl-sys-extras/src/lib.rs +++ b/openssl-sys-extras/src/lib.rs @@ -1,5 +1,5 @@ #![allow(non_upper_case_globals, non_snake_case)] -#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.10")] +#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.11")] extern crate openssl_sys; extern crate libc; -- cgit v1.2.3 From 95051b060d5701d5c2282d92a7d9d955852e1e30 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Mon, 16 May 2016 23:04:03 -0700 Subject: Release v0.7.12 --- openssl-sys-extras/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openssl-sys-extras/src/lib.rs') diff --git a/openssl-sys-extras/src/lib.rs b/openssl-sys-extras/src/lib.rs index a2acbd55..dbc19641 100644 --- a/openssl-sys-extras/src/lib.rs +++ b/openssl-sys-extras/src/lib.rs @@ -1,5 +1,5 @@ #![allow(non_upper_case_globals, non_snake_case)] -#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.11")] +#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.12")] extern crate openssl_sys; extern crate libc; -- cgit v1.2.3 From f6b612df5f32088b16d1252822f4cd7d4596c71c Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Fri, 20 May 2016 15:57:57 -0700 Subject: Release v0.7.13 --- openssl-sys-extras/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openssl-sys-extras/src/lib.rs') diff --git a/openssl-sys-extras/src/lib.rs b/openssl-sys-extras/src/lib.rs index dbc19641..8b13ade9 100644 --- a/openssl-sys-extras/src/lib.rs +++ b/openssl-sys-extras/src/lib.rs @@ -1,5 +1,5 @@ #![allow(non_upper_case_globals, non_snake_case)] -#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.12")] +#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.13")] extern crate openssl_sys; extern crate libc; -- cgit v1.2.3 From 121169c1f57bf0b1130b400d9ed6431855fb2e73 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Fri, 1 Jul 2016 18:31:47 -0400 Subject: Set auto retry SSL_read returns a WANT_READ after a renegotiation by default which ends up bubbling up as a weird BUG error. Tell OpenSSL to just do the read again. --- openssl-sys-extras/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'openssl-sys-extras/src/lib.rs') diff --git a/openssl-sys-extras/src/lib.rs b/openssl-sys-extras/src/lib.rs index 8b13ade9..c71ad073 100644 --- a/openssl-sys-extras/src/lib.rs +++ b/openssl-sys-extras/src/lib.rs @@ -60,6 +60,8 @@ extern { pub fn SSL_CTX_set_options_shim(ctx: *mut SSL_CTX, options: c_long) -> c_long; pub fn SSL_CTX_get_options_shim(ctx: *mut SSL_CTX) -> c_long; pub fn SSL_CTX_clear_options_shim(ctx: *mut SSL_CTX, options: c_long) -> c_long; + #[link_name = "SSL_CTX_set_mode_shim"] + pub fn SSL_CTX_set_mode(ctx: *mut SSL_CTX, options: c_long) -> c_long; #[link_name = "SSL_CTX_add_extra_chain_cert_shim"] pub fn SSL_CTX_add_extra_chain_cert(ctx: *mut SSL_CTX, x509: *mut X509) -> c_long; #[link_name = "SSL_CTX_set_read_ahead_shim"] -- cgit v1.2.3 From 5135fca87f1bbdb7bfd128fcc92781448c8da798 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Fri, 1 Jul 2016 18:43:39 -0400 Subject: Release v0.7.14 --- openssl-sys-extras/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openssl-sys-extras/src/lib.rs') diff --git a/openssl-sys-extras/src/lib.rs b/openssl-sys-extras/src/lib.rs index c71ad073..8e7542fc 100644 --- a/openssl-sys-extras/src/lib.rs +++ b/openssl-sys-extras/src/lib.rs @@ -1,5 +1,5 @@ #![allow(non_upper_case_globals, non_snake_case)] -#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.13")] +#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.14")] extern crate openssl_sys; extern crate libc; -- cgit v1.2.3