aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2013-12-15 22:00:30 -0800
committerSteven Fackler <[email protected]>2013-12-15 22:00:30 -0800
commitd4b1c5bf55a6f0181cc5f647f5f93afb06e958ab (patch)
tree37a39929c26a16baf5097494d31c26c4403654af
parentFix for vec API changes (diff)
downloadrust-openssl-d4b1c5bf55a6f0181cc5f647f5f93afb06e958ab.tar.xz
rust-openssl-d4b1c5bf55a6f0181cc5f647f5f93afb06e958ab.zip
Remove some unused bindings
-rw-r--r--ffi.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/ffi.rs b/ffi.rs
index 97c0554e..45192fd3 100644
--- a/ffi.rs
+++ b/ffi.rs
@@ -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;