tokio-rustls
tokio-rustls copied to clipboard
Async TLS for the Tokio runtime
## Request To complement `TlsStream::into_inner(Self) -> (IO, ClientConnection)`, I would like to have a `TlsStream::from_inner(IO, ClientConnection) -> Self`. ## Justification ### Multiple tokio runtimes I would like to move `TlsStream`...
This follows changes in yet-unreleased `[email protected]` so they can be tracked and relied upon by other dependencies. I've asked for an RC release at https://github.com/rustls/rustls/issues/2400#issuecomment-3157678869 Going farther than https://github.com/rustls/tokio-rustls/pull/118
see https://github.com/rustls/rustls/blob/main/rustls/Cargo.toml#L23 this feature was renamed in https://github.com/rustls/rustls/commit/192ab85a5c2c865b9cca9b2a8c987de33a102667, via https://github.com/rustls/rustls/pull/2549. this updates the `logging` feature so that it now points to the new name of this feature.
In some areas, SNI blocking is very serious, but tokio-rustls does not provide SNI handshake hello packet fragmentation processing. It is necessary to provide an API for external program processing...