dbus_bytestream/
lib.rs

1//! Native rust implementation of the D-Bus wire protocol.  Supports TCP and UDS transports, as
2//! well as the EXTERNAL and ANONYMOUS authentication types.
3
4extern crate dbus_serialize;
5extern crate rustc_serialize;
6extern crate unix_socket;
7extern crate libc;
8extern crate rand;
9extern crate crypto;
10
11pub mod demarshal;
12pub mod marshal;
13pub mod message;
14pub mod connection;
15
16mod address;
17pub mod addr {
18    pub use address::UnescapeError;
19    pub use address::Error as AddressError;
20    pub use address::ServerAddressError;
21}