From 64106c4d3d4ddba8c7bc2af75376e6d3d3d75601 Mon Sep 17 00:00:00 2001
From:
Date: Mon, 29 Jun 2015 20:16:15 +0000
Subject: Update documentation
---
src/openssl/bio/mod.rs.html | 309 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 309 insertions(+)
create mode 100644 src/openssl/bio/mod.rs.html
(limited to 'src/openssl/bio')
diff --git a/src/openssl/bio/mod.rs.html b/src/openssl/bio/mod.rs.html
new file mode 100644
index 0000000..0d8a555
--- /dev/null
+++ b/src/openssl/bio/mod.rs.html
@@ -0,0 +1,309 @@
+
+
+
+ 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+ 10
+ 11
+ 12
+ 13
+ 14
+ 15
+ 16
+ 17
+ 18
+ 19
+ 20
+ 21
+ 22
+ 23
+ 24
+ 25
+ 26
+ 27
+ 28
+ 29
+ 30
+ 31
+ 32
+ 33
+ 34
+ 35
+ 36
+ 37
+ 38
+ 39
+ 40
+ 41
+ 42
+ 43
+ 44
+ 45
+ 46
+ 47
+ 48
+ 49
+ 50
+ 51
+ 52
+ 53
+ 54
+ 55
+ 56
+ 57
+ 58
+ 59
+ 60
+ 61
+ 62
+ 63
+ 64
+ 65
+ 66
+ 67
+ 68
+ 69
+ 70
+ 71
+ 72
+ 73
+ 74
+ 75
+ 76
+ 77
+ 78
+ 79
+ 80
+ 81
+ 82
+ 83
+ 84
+ 85
+ 86
+ 87
+ 88
+ 89
+ 90
+ 91
+ 92
+ 93
+ 94
+ 95
+ 96
+ 97
+ 98
+ 99
+100
+101
+102
+103
+104
+105
+106
+
+use libc::{c_void, c_int};
+use std::io;
+use std::io::prelude::*;
+use std::ptr;
+use std::cmp;
+
+use ffi;
+use ssl::error::{SslError};
+
+pub struct MemBio {
+ bio: *mut ffi::BIO,
+ owned: bool
+}
+
+impl Drop for MemBio {
+ fn drop(&mut self) {
+ if self.owned {
+ unsafe {
+ ffi::BIO_free_all(self.bio);
+ }
+ }
+ }
+}
+
+impl MemBio {
+
+ pub fn new() -> Result<MemBio, SslError> {
+ ffi::init();
+
+ let bio = unsafe { ffi::BIO_new(ffi::BIO_s_mem()) };
+ try_ssl_null!(bio);
+
+ Ok(MemBio {
+ bio: bio,
+ owned: true
+ })
+ }
+
+
+ pub fn borrowed(bio: *mut ffi::BIO) -> MemBio {
+ MemBio {
+ bio: bio,
+ owned: false
+ }
+ }
+
+
+
+
+ pub unsafe fn unwrap(mut self) -> *mut ffi::BIO {
+ self.owned = false;
+ self.bio
+ }
+
+
+ pub unsafe fn get_handle(&self) -> *mut ffi::BIO {
+ self.bio
+ }
+
+
+ pub fn set_eof(&self, eof: bool) {
+ let v = if eof { 0 } else { -1 };
+ unsafe { ffi::BIO_set_mem_eof_return(self.bio, v); }
+ }
+}
+
+impl Read for MemBio {
+ fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
+ let len = cmp::min(c_int::max_value() as usize, buf.len()) as c_int;
+ let ret = unsafe {
+ ffi::BIO_read(self.bio, buf.as_ptr() as *mut c_void, len)
+ };
+
+ if ret <= 0 {
+ let is_eof = unsafe { ffi::BIO_eof(self.bio) };
+ if is_eof {
+ Ok(0)
+ } else {
+ Err(io::Error::new(io::ErrorKind::Other,
+ SslError::get()))
+ }
+ } else {
+ Ok(ret as usize)
+ }
+ }
+}
+
+impl Write for MemBio {
+ fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
+ let len = cmp::min(c_int::max_value() as usize, buf.len()) as c_int;
+ let ret = unsafe {
+ ffi::BIO_write(self.bio, buf.as_ptr() as *const c_void, len)
+ };
+
+ if ret < 0 {
+ Err(io::Error::new(io::ErrorKind::Other,
+ SslError::get()))
+ } else {
+ Ok(ret as usize)
+ }
+ }
+
+ fn flush(&mut self) -> io::Result<()> {
+ Ok(())
+ }
+}
+
+
+