aboutsummaryrefslogtreecommitdiff
path: root/openssl/src
diff options
context:
space:
mode:
authorManuel Schölling <[email protected]>2015-04-30 20:00:30 +0200
committerManuel Schölling <[email protected]>2015-04-30 20:00:30 +0200
commitc8fae312ad9a4350f3aa92b5aa09cc9f8971175e (patch)
tree2de5d836c56e226ab99d04dee0681407c0ee53cb /openssl/src
parentWrite through to underlying stream for every write call (diff)
downloadrust-openssl-c8fae312ad9a4350f3aa92b5aa09cc9f8971175e.tar.xz
rust-openssl-c8fae312ad9a4350f3aa92b5aa09cc9f8971175e.zip
Add SslStream.pending()
Diffstat (limited to 'openssl/src')
-rw-r--r--openssl/src/ssl/mod.rs12
-rw-r--r--openssl/src/ssl/tests.rs24
2 files changed, 36 insertions, 0 deletions
diff --git a/openssl/src/ssl/mod.rs b/openssl/src/ssl/mod.rs
index ab559b46..13d9572b 100644
--- a/openssl/src/ssl/mod.rs
+++ b/openssl/src/ssl/mod.rs
@@ -707,6 +707,13 @@ impl Ssl {
}
}
}
+
+ /// pending() takes into account only bytes from the TLS/SSL record that is currently being processed (if any).
+ pub fn pending(&self) -> usize {
+ unsafe {
+ ffi::SSL_pending(self.ssl) as usize
+ }
+ }
}
macro_rules! make_LibSslError {
@@ -882,6 +889,11 @@ impl<S: Read+Write> SslStream<S> {
pub fn get_selected_npn_protocol(&self) -> Option<&[u8]> {
self.ssl.get_selected_npn_protocol()
}
+
+ /// pending() takes into account only bytes from the TLS/SSL record that is currently being processed (if any).
+ pub fn pending(&self) -> usize {
+ self.ssl.pending()
+ }
}
impl<S: Read+Write> Read for SslStream<S> {
diff --git a/openssl/src/ssl/tests.rs b/openssl/src/ssl/tests.rs
index e6af551b..c9a2d73a 100644
--- a/openssl/src/ssl/tests.rs
+++ b/openssl/src/ssl/tests.rs
@@ -337,6 +337,30 @@ fn test_read() {
io::copy(&mut stream, &mut io::sink()).ok().expect("read error");
}
+
+#[test]
+fn test_pending() {
+ let tcp = TcpStream::connect("127.0.0.1:15418").unwrap();
+ let mut stream = SslStream::new(&SslContext::new(Sslv23).unwrap(), tcp).unwrap();
+ stream.write_all("GET /\r\n\r\n".as_bytes()).unwrap();
+ stream.flush().unwrap();
+
+ // wait for the response and read first byte...
+ let mut buf = [0u8; 16*1024];
+ stream.read(&mut buf[..1]).unwrap();
+
+ let pending = stream.pending();
+ let len = stream.read(&mut buf[1..]).unwrap();
+
+ assert_eq!(pending, len);
+
+ stream.read(&mut buf[..1]).unwrap();
+
+ let pending = stream.pending();
+ let len = stream.read(&mut buf[1..]).unwrap();
+ assert_eq!(pending, len);
+}
+
/// Tests that connecting with the client using NPN, but the server not does not
/// break the existing connection behavior.
#[test]