atap 0.1.0

Threadsafe futureless async runtime for macOS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # TLS
//! Tasks that talk over TLS, on top of TCP, and the connections
//! they hand back
//!
//! Only built with the `tls` feature

pub(crate) mod config;
pub mod connection;
pub(crate) mod fd_io;
pub(crate) mod handshake;
pub mod tls;
pub mod tls_task;

pub use connection::{TlsConnection, TlsListener};
pub use tls::Tls;
pub use tls_task::{TlsAcceptTask, TlsConnectTask, TlsListenTask, TlsRequestTask};