//! Convenience wrapper for streams to switch between plain TCP and TLS at runtime. //! //! There is no dependency on actual TLS implementations. Everything like //! `native_tls` or `openssl` will work as long as there is a TLS stream supporting standard //! `Read + Write` traits. use std::io::{Read, Write, Result as IoResult}; /// Stream mode, either plain TCP or TLS. #[derive(Clone, Copy)] pub enum Mode { Plain, Tls, } /// Stream, either plain TCP or TLS. pub enum Stream { Plain(S), Tls(T), } impl Read for Stream { fn read(&mut self, buf: &mut [u8]) -> IoResult { match *self { Stream::Plain(ref mut s) => s.read(buf), Stream::Tls(ref mut s) => s.read(buf), } } } impl Write for Stream { fn write(&mut self, buf: &[u8]) -> IoResult { match *self { Stream::Plain(ref mut s) => s.write(buf), Stream::Tls(ref mut s) => s.write(buf), } } fn flush(&mut self) -> IoResult<()> { match *self { Stream::Plain(ref mut s) => s.flush(), Stream::Tls(ref mut s) => s.flush(), } } }