1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//! This crate provides the common code shared among the different Ockam's transport protocols.
//!
//! Each specific protocol is then supported in its own crate. For example, the TCP protocol is supported in the `ockam_transport_tcp` crate.
//!
//! Currently available transports include:
//!
//! * `ockam_transport_tcp` - TCP transport
//! * `ockam_transport_udp` - UDP transport
//! * `ockam_transport_ble` - Bluetooth Low Energy Transport
//! * `ockam_transport_websocket` - WebSocket Transport
//! * `ockam_transport_uds` - Unix Domain Socket Transport
//!

#![cfg_attr(not(feature = "std"), no_std)]

mod error;
mod transport;

pub use error::TransportError;
pub use transport::*;