starttls works

This commit is contained in:
Astro 2017-06-05 00:42:35 +02:00
commit a618acd6d6
6 changed files with 178 additions and 4 deletions

View file

@ -4,12 +4,16 @@ extern crate tokio_core;
extern crate tokio_io;
extern crate bytes;
extern crate xml;
extern crate rustls;
extern crate tokio_rustls;
mod xmpp_codec;
pub use xmpp_codec::*;
mod tcp;
pub use tcp::*;
mod starttls;
pub use starttls::*;
// type FullClient = sasl::Client<StartTLS<TCPConnection>>