pub enum ProxiedStream {
Plain(TcpStream),
PlainOverTlsProxy(Box<TlsStream<TcpStream>>),
Tls(Box<TlsStream<TcpStream>>),
TlsOverTlsProxy(Box<TlsStream<TlsStream<TcpStream>>>),
}Expand description
Stream produced by tunnel_via_proxy when the upstream is ws://
(no upstream TLS, but the proxy hop itself may have been TLS-protected).
The TLS-bearing variants are boxed because [tokio_rustls::client::TlsStream]
is large enough that a flat enum trips clippy::large_enum_variant. Boxing
keeps the discriminant cheap to move while leaving the rare TLS path on the
heap.
Variants§
Plain(TcpStream)
Plain TCP after a plain proxy hop.
PlainOverTlsProxy(Box<TlsStream<TcpStream>>)
Plain TCP after a TLS proxy hop.
Tls(Box<TlsStream<TcpStream>>)
Upstream TLS over a plain proxy hop.
TlsOverTlsProxy(Box<TlsStream<TlsStream<TcpStream>>>)
Upstream TLS over a TLS proxy hop.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for ProxiedStream
impl !RefUnwindSafe for ProxiedStream
impl !UnwindSafe for ProxiedStream
impl Send for ProxiedStream
impl Sync for ProxiedStream
impl Unpin for ProxiedStream
impl UnsafeUnpin for ProxiedStream
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more