diff options
| author | Steven Fackler <[email protected]> | 2017-07-29 10:34:10 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2017-07-29 10:34:10 -0700 |
| commit | c2164a4864dd19d8975c21b6ad954ebd99724e8c (patch) | |
| tree | cb03c571d0e778a48114b896f3141b253e04dea6 /openssl-sys/src | |
| parent | Ignore dtls tests (diff) | |
| download | rust-openssl-c2164a4864dd19d8975c21b6ad954ebd99724e8c.tar.xz rust-openssl-c2164a4864dd19d8975c21b6ad954ebd99724e8c.zip | |
Add peer_cert_chain
Diffstat (limited to 'openssl-sys/src')
| -rw-r--r-- | openssl-sys/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs index 7c68b4fa..353f619f 100644 --- a/openssl-sys/src/lib.rs +++ b/openssl-sys/src/lib.rs @@ -2240,6 +2240,7 @@ extern "C" { #[cfg(libressl)] pub fn SSL_get_current_compression(ssl: *mut SSL) -> *const libc::c_void; pub fn SSL_get_peer_certificate(ssl: *const SSL) -> *mut X509; + pub fn SSL_get_peer_cert_chain(ssl: *const SSL) -> *mut stack_st_X509; pub fn SSL_get_ssl_method(ssl: *mut SSL) -> *const SSL_METHOD; pub fn SSL_get_version(ssl: *const SSL) -> *const c_char; pub fn SSL_state_string(ssl: *const SSL) -> *const c_char; |