You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ClientTransport is no longer using TcpStream, but a new type TransportStream that wraps either a TcpStream or a TslStream. So if you want to access the underlying stream you now must do:
match transport_stream {TransportStream::Plain(stream) => ...TransportStream::Tls(stream) => ...,}