2017-06-02 23:58:31 +00:00
|
|
|
#[macro_use]
|
2017-06-01 22:42:57 +00:00
|
|
|
extern crate futures;
|
|
|
|
extern crate tokio_core;
|
2017-06-04 00:05:08 +00:00
|
|
|
extern crate tokio_io;
|
|
|
|
extern crate bytes;
|
2017-06-01 22:42:57 +00:00
|
|
|
extern crate xml;
|
2017-06-06 00:03:38 +00:00
|
|
|
extern crate native_tls;
|
|
|
|
extern crate tokio_tls;
|
2017-06-05 23:29:20 +00:00
|
|
|
extern crate sasl;
|
|
|
|
extern crate rustc_serialize as serialize;
|
2017-06-01 22:42:57 +00:00
|
|
|
|
|
|
|
|
2017-06-05 00:50:22 +00:00
|
|
|
pub mod xmpp_codec;
|
|
|
|
pub mod xmpp_stream;
|
|
|
|
mod stream_start;
|
2017-06-03 23:37:46 +00:00
|
|
|
mod tcp;
|
|
|
|
pub use tcp::*;
|
2017-06-04 22:42:35 +00:00
|
|
|
mod starttls;
|
|
|
|
pub use starttls::*;
|
2017-06-05 23:29:20 +00:00
|
|
|
mod client_auth;
|
|
|
|
pub use client_auth::*;
|
2017-06-01 22:42:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
// type FullClient = sasl::Client<StartTLS<TCPConnection>>
|
|
|
|
|