//! This crate provides KTLS compatible openssl SslStream implementation.
//!
//! We cannot use the openssl::ssl::SslStream directly here
//! because its BIOs are not compatible with KTLS.
//! The BIO blocks the ctrl messages that needs to be passed down to
//! the next BIO layer.
// Only support linux
// Raw fd does not exist on windows.
pub use SslStream;
pub type TokioSslStream = SslStream;