diff options
| author | Steven Fackler <[email protected]> | 2015-08-02 22:27:19 -0400 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-08-02 22:27:19 -0400 |
| commit | a10604e15d82f301942936122f185effe3c84f5e (patch) | |
| tree | 92006d36f5f152ae415b5ae62c9569b9ec79e4bf /openssl-sys/src | |
| parent | Add new feature to travis tests (diff) | |
| parent | Fix probelms with DTLS when no packets are pending. (diff) | |
| download | rust-openssl-a10604e15d82f301942936122f185effe3c84f5e.tar.xz rust-openssl-a10604e15d82f301942936122f185effe3c84f5e.zip | |
Merge pull request #243 from manuels/master
Fix probelms with DTLS when no packets are pending.
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 53438e35..55ec30bb 100644 --- a/openssl-sys/src/lib.rs +++ b/openssl-sys/src/lib.rs @@ -528,6 +528,7 @@ extern "C" { pub fn SSL_get_SSL_CTX(ssl: *mut SSL) -> *mut SSL_CTX; pub fn SSL_get_current_compression(ssl: *mut SSL) -> *const COMP_METHOD; pub fn SSL_get_peer_certificate(ssl: *mut SSL) -> *mut X509; + pub fn SSL_get_ssl_method(ssl: *mut SSL) -> *const SSL_METHOD; pub fn SSL_COMP_get_name(comp: *const COMP_METHOD) -> *const c_char; |