summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-03-05 14:41:35 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-03-05 14:41:35 -0800
commitc3cdbc762c1b35bd260044870e655e06c75e738c (patch)
tree84b7e419358e6e24b1bf0df3357961865ebac560 /src/lib.rs
parent1263c36e27f4652831fee37002167dfa11900b67 (diff)
downloadssh2-rs-c3cdbc762c1b35bd260044870e655e06c75e738c.zip
Remove {read,write,flush}_stream in favor of Stream
There are then impls of `Read` and `Write` for the returned object. Closes #9
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 4b221a9..13a10d3 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -136,7 +136,7 @@ use std::ffi::CStr;
use std::sync::{Once, ONCE_INIT};
pub use agent::{Agent, Identities, PublicKey};
-pub use channel::{Channel, ExitSignal, ReadWindow, WriteWindow};
+pub use channel::{Channel, ExitSignal, ReadWindow, WriteWindow, Stream};
pub use error::Error;
pub use knownhosts::{KnownHosts, Hosts, Host};
pub use listener::Listener;