rust_asio 0.6.0

Asynchronous I/O library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod ffi;

mod error;
pub use self::error::{Error, Result};

mod types;
pub use self::types::*;

mod verify;
pub use self::verify::{SslVerifyContext, Rfc2818Verification};

mod context;
pub use self::context::SslContext;

mod stream;
pub use self::stream::SslStream;