lib: add a component connection method

This commit is contained in:
Emmanuel Gil Peyrot 2017-07-22 01:59:51 +01:00 committed by Astro
commit c0f3fc4afb
7 changed files with 416 additions and 3 deletions

View file

@ -12,6 +12,7 @@ extern crate rustc_serialize as serialize;
extern crate jid;
extern crate domain;
extern crate idna;
extern crate sha_1;
pub mod xmpp_codec;
pub mod xmpp_stream;
@ -21,3 +22,5 @@ pub use starttls::StartTlsClient;
mod happy_eyeballs;
mod client;
pub use client::{Client, ClientEvent};
mod component;
pub use component::{Component, ComponentEvent};