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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
//! A safe wrapper for the [`c-ares`](http://c-ares.haxx.se) library.
//!
//! Usage is as follows:
//!
//! -  Create a `Channel`, providing a callback which will be used to notify
//!    you when `c-ares` wants you to listen for read or write events on its
//!    behalf.
//!
//! -  When this callback is invoked, do what it asks!
//!
//! -  When a file descriptor becomes readable or writable, call `process_fd()`
//!    on the channel to tell `c-ares` what has happened.
//!
//! -  `c-ares` doesn't create any threads of its own.  So if you have queries
//!    pending and don't see events happening, you still need to call
//!    `process_fd()` at some point anyway - to give `c-ares` an opportunity to
//!    process any requests that have timed out.
//!
//! -  Make queries on the channel.  Queries all take callbacks, which will be
//!    called when the query completes.
//!
//! This model is a good fit for an event loop - as provided by
//! [`mio`](https://github.com/carllerche/mio), for example.
//!
//! Complete examples showing how to use the library can be found
//! [here](https://github.com/dimbleby/rust-c-ares/tree/master/examples).
#[macro_use] extern crate bitflags;
mod a;
mod aaaa;
mod srv;
mod channel;
mod cname;
pub mod flags;
mod mx;
mod naptr;
mod ns;
mod ptr;
mod types;
mod txt;
mod soa;
mod utils;

// Re-export public interfaces.
pub use a::{
    AResult,
    AResults,
};
pub use aaaa::{
    AAAAResult,
    AAAAResults,
};
pub use srv::{
    SRVResult,
    SRVResults,
};
pub use channel::{
    Channel,
    Options,
};
pub use cname::CNameResult;
pub use mx::{
    MXResult,
    MXResults,
};
pub use naptr::{
    NAPTRResult,
    NAPTRResults,
};
pub use ns::{
    NSResult,
    NSResults,
};
pub use ptr::{
    PTRResult,
    PTRResults,
};
pub use types::{
    AresError,
    INVALID_FD,
};
pub use txt::{
    TXTResult,
    TXTResults,
};
pub use soa::SOAResult;
pub use utils::str_error;