tokio-rustls icon indicating copy to clipboard operation
tokio-rustls copied to clipboard

Async TLS for the Tokio runtime

Results 14 tokio-rustls issues
Sort by recently updated
recently updated
newest added

Hi! Thank you for this crate. I have this crate in my dependency tree and was just about to upgrade it from 0.23 to 0.24. When upgrading dependencies I always...

This is more of a PR than an issue, since I've implemented the code already, but it's in a separate server: https://code.betamike.com/micropelago/tokio-rustls/commit/18fd688b335430e17e054e15ff7d6ce073db2419 ``` Implement TransparentConfigAcceptor The goal of the TransparentConfigAcceptor...

I found that second packet of a new connection cannot read by server side, but when client send another packet 5secs later, server side can read normally.

Tokio allows splitting a `TcpStream` into a (`Owned`)`ReadHalf` / (`Owned`)`WriteHalf` via [`TcpStream::split` / `TcpStream::into_split`](https://docs.rs/tokio/latest/tokio/net/struct.TcpStream.html#method.split), but I don't believe `tokio_rustls` allows splitting a `TlsStream` that wraps a `TcpStream`. Is there a...