summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-09-18 18:43:46 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-09-18 18:43:46 -0700
commit43af5b4f768b082921df4d2a1fb23c246c399a34 (patch)
tree90ba6dbb0e34c58407fcf460991512ad3ade49a1 /src/lib.rs
parentc45c5b0c55cc350d68008dedd6860fdaeaf0440d (diff)
downloadssh2-rs-43af5b4f768b082921df4d2a1fb23c246c399a34.zip
More bindings to more channel functions
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 5010137..329a3a7 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -59,13 +59,15 @@ use std::rt;
use std::sync::{Once, ONCE_INIT};
pub use agent::{Agent, Identities, PublicKey};
-pub use channel::{Channel, ExitSignal};
+pub use channel::{Channel, ExitSignal, ReadWindow, WriteWindow};
pub use error::Error;
+pub use listener::Listener;
pub use session::Session;
mod agent;
mod channel;
mod error;
+mod listener;
mod session;
/// Initialize the libssh2 library.