diff options
| author | Steven Fackler <[email protected]> | 2015-05-05 22:57:14 -0400 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-05-05 22:57:14 -0400 |
| commit | 8a9aa0c657d61cc2a32a1d59dcbd2a55d6f9b694 (patch) | |
| tree | 441f3538fe7f7b1976c5d377af68c409efdd2267 /openssl-sys/src | |
| parent | Merge pull request #201 from manuels/pkey_cmp (diff) | |
| parent | Add SslStream.pending() (diff) | |
| download | rust-openssl-8a9aa0c657d61cc2a32a1d59dcbd2a55d6f9b694.tar.xz rust-openssl-8a9aa0c657d61cc2a32a1d59dcbd2a55d6f9b694.zip | |
Merge pull request #210 from manuels/pending
Add SslStream.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 9365704e..b3b9463d 100644 --- a/openssl-sys/src/lib.rs +++ b/openssl-sys/src/lib.rs @@ -497,6 +497,7 @@ extern "C" { pub fn SSLv23_method() -> *const SSL_METHOD; pub fn SSL_new(ctx: *mut SSL_CTX) -> *mut SSL; + pub fn SSL_pending(ssl: *const SSL) -> c_int; pub fn SSL_free(ssl: *mut SSL); pub fn SSL_set_bio(ssl: *mut SSL, rbio: *mut BIO, wbio: *mut BIO); pub fn SSL_get_rbio(ssl: *mut SSL) -> *mut BIO; |