diff options
| author | Steven Fackler <[email protected]> | 2016-07-01 18:31:47 -0400 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-07-01 18:31:47 -0400 |
| commit | 121169c1f57bf0b1130b400d9ed6431855fb2e73 (patch) | |
| tree | d9e7e34dbf92171ce7e1da484941ba52521596f0 /openssl-sys/src | |
| parent | Test on 1.8 (diff) | |
| download | rust-openssl-121169c1f57bf0b1130b400d9ed6431855fb2e73.tar.xz rust-openssl-121169c1f57bf0b1130b400d9ed6431855fb2e73.zip | |
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.
Diffstat (limited to 'openssl-sys/src')
| -rw-r--r-- | openssl-sys/src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs index e6a7c488..bdcf71d4 100644 --- a/openssl-sys/src/lib.rs +++ b/openssl-sys/src/lib.rs @@ -270,8 +270,10 @@ pub const SSL_CTRL_SET_TLSEXT_SERVERNAME_CB: c_int = 53; pub const SSL_CTRL_SET_TLSEXT_SERVERNAME_ARG: c_int = 54; pub const SSL_CTRL_SET_TLSEXT_HOSTNAME: c_int = 55; pub const SSL_CTRL_EXTRA_CHAIN_CERT: c_int = 14; - pub const SSL_CTRL_SET_READ_AHEAD: c_int = 41; + +pub const SSL_MODE_AUTO_RETRY: c_long = 4; + pub const SSL_ERROR_NONE: c_int = 0; pub const SSL_ERROR_SSL: c_int = 1; pub const SSL_ERROR_SYSCALL: c_int = 5; |