#[rustfmt::skip]
mod api;
pub use api::*;
#[cfg(feature = "quic")]
#[rustfmt::skip]
mod quic;
#[cfg(feature = "quic")]
pub use quic::*;
#[cfg(feature = "internal")]
#[rustfmt::skip]
mod internal;
#[cfg(feature = "internal")]
pub use internal::*;
pub mod s2n_status_code {
pub type Type = libc::c_int;
pub const SUCCESS: Type = 0;
pub const FAILURE: Type = -1;
}
pub mod s2n_tls_version {
pub type Type = libc::c_int;
pub const SSLV2: Type = 20;
pub const SSLV3: Type = 30;
pub const TLS10: Type = 31;
pub const TLS11: Type = 32;
pub const TLS12: Type = 33;
pub const TLS13: Type = 34;
pub const UNKNOWN: Type = 0;
}
#[cfg(test)]
#[rustfmt::skip]
mod tests;