microsandbox-network 0.7.3

Networking types and smoltcp engine for the microsandbox project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! TLS configuration models and optional engine state.
//!
//! Configuration types remain available to SDK consumers without the
//! heavyweight networking engine. Enabling `engine` additionally exposes the
//! runtime TLS state while keeping implementation helpers crate-private.

#[cfg(feature = "engine")]
pub use crate::engine::tls::state;

//--------------------------------------------------------------------------------------------------
// Re-Exports
//--------------------------------------------------------------------------------------------------

pub use microsandbox_types::{
    CertCacheConfig, InterceptCaConfig, ScopedUpstreamCaCert, ScopedVerifyUpstream, TlsConfig,
};