ziti-sdk 0.3.0

Ziti Rust SDK - High-performance, async-first implementation for secure, zero-trust networking
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Network connection module
//!
//! Provides client dial connections, server listeners, and connection streams
//! for Ziti network communication.

pub mod dial;
pub mod listen;
pub mod stream;

// Re-export the main dial and listen functions and types
pub use dial::{dial, EdgeRouter};
pub use listen::{listen, listen_with_options, ZitiListener};
pub use stream::ZitiStream;