sdtn 0.1.3

SpaceArth DTN - A Rust-based implementation of Delay Tolerant Networking (DTN) for resilient communication
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// API modules
pub mod convenience;
pub mod node;

pub mod types;

// Re-export main types for convenience
pub use convenience::*;
pub use node::DtnNode;
pub use types::BundleStatus;

#[cfg(test)]
mod tests;