A more convenient API around c-ares
, for asynchronous DNS requests.
The c-ares
crate provides a safe wrapper around the underlying C library, but it's relatively hard work to use: the user needs to drive the polling of file descriptors according to c-ares
demands, which likely involves writing something close to a full-blown event loop.
This crate does that hard work for you so that the presented API is much more straightforward.
API documentation is here.
```rust extern crate caresresolver; extern crate tokio_core;
fn main() { let resolver = caresresolver::FutureResolver::new().unwrap(); let query = resolver.querya("google.com"); let mut eventloop = tokiocore::reactor::Core::new().unwrap(); let result = eventloop.run(query).unwrap(); println!("{}", result); } ```
Further example programs can be found here.
Contributions are welcome. Please send pull requests!