diff options
| author | Benjamin Saunders <[email protected]> | 2018-05-17 15:17:40 -0700 |
|---|---|---|
| committer | Benjamin Saunders <[email protected]> | 2018-05-22 20:25:28 -0700 |
| commit | 2e478fdcf47bcb69a098bd6c3ab6227b53d45a24 (patch) | |
| tree | db1760d52af7cb9ccba248ecd6d540a8fa5215e4 /openssl-sys/src/lib.rs | |
| parent | Expose early keying material export (diff) | |
| download | rust-openssl-2e478fdcf47bcb69a098bd6c3ab6227b53d45a24.tar.xz rust-openssl-2e478fdcf47bcb69a098bd6c3ab6227b53d45a24.zip | |
Expose early I/O
Diffstat (limited to 'openssl-sys/src/lib.rs')
| -rw-r--r-- | openssl-sys/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs index 61e087d0..a48f6a85 100644 --- a/openssl-sys/src/lib.rs +++ b/openssl-sys/src/lib.rs @@ -2832,4 +2832,7 @@ extern "C" { pub fn EVP_MD_size(md: *const EVP_MD) -> c_int; pub fn EVP_get_cipherbyname(name: *const c_char) -> *const EVP_CIPHER; + + pub fn SSL_set_connect_state(s: *mut SSL); + pub fn SSL_set_accept_state(s: *mut SSL); } |