implement SRV lookup

This commit is contained in:
Astro 2017-07-13 02:56:02 +02:00
commit e2c6a6ed37
5 changed files with 125 additions and 28 deletions

View file

@ -9,7 +9,7 @@ extern crate tokio_tls;
extern crate sasl;
extern crate rustc_serialize as serialize;
extern crate jid;
extern crate domain;
pub mod xmpp_codec;
pub mod xmpp_stream;
@ -18,5 +18,6 @@ mod tcp;
pub use tcp::*;
mod starttls;
pub use starttls::*;
mod happy_eyeballs;
mod client;
pub use client::{Client, ClientEvent};