1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#[warn(missing_docs)]
extern crate abstract_ns;
extern crate futures;
extern crate rustc_serialize;
extern crate tk_http;
extern crate tk_pool;
extern crate tokio_core;
extern crate tokio_io;

#[macro_use] extern crate log;
#[macro_use] extern crate quick_error;

mod connect;
mod peers;
mod response;
mod errors;

pub use connect::connect_local;
pub use response::ResponseFuture;
pub use peers::{PeersResponse, Peer};


/// Connection abstraction used to fetch data from the cantal
///
/// Internally this structure contains a connection pool that reconnects
/// when connection is broken.
pub struct Connection {
    pool: connect::Pool,
}