diff options
| author | Steven Fackler <[email protected]> | 2013-12-15 22:00:30 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2013-12-15 22:00:30 -0800 |
| commit | d4b1c5bf55a6f0181cc5f647f5f93afb06e958ab (patch) | |
| tree | 37a39929c26a16baf5097494d31c26c4403654af | |
| parent | Fix for vec API changes (diff) | |
| download | rust-openssl-d4b1c5bf55a6f0181cc5f647f5f93afb06e958ab.tar.xz rust-openssl-d4b1c5bf55a6f0181cc5f647f5f93afb06e958ab.zip | |
Remove some unused bindings
| -rw-r--r-- | ffi.rs | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -144,12 +144,10 @@ extern "C" { pub fn SSL_set_bio(ssl: *SSL, rbio: *BIO, wbio: *BIO); pub fn SSL_get_rbio(ssl: *SSL) -> *BIO; pub fn SSL_get_wbio(ssl: *SSL) -> *BIO; - pub fn SSL_set_connect_state(ssl: *SSL); pub fn SSL_connect(ssl: *SSL) -> c_int; pub fn SSL_get_error(ssl: *SSL, ret: c_int) -> c_int; pub fn SSL_read(ssl: *SSL, buf: *c_void, num: c_int) -> c_int; pub fn SSL_write(ssl: *SSL, buf: *c_void, num: c_int) -> c_int; - pub fn SSL_shutdown(ssl: *SSL) -> c_int; pub fn SSL_get_ex_data_X509_STORE_CTX_idx() -> c_int; pub fn SSL_get_SSL_CTX(ssl: *SSL) -> *SSL_CTX; |